Skip to content

Add doc about linux broker on dotnet scenario #646

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
c631925
add doc about linux broker on dotnet scenario
xinyuxu1026 May 5, 2025
ffa809e
add more info
xinyuxu1026 May 6, 2025
83ccb15
update author
xinyuxu1026 May 6, 2025
2be64ed
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
3c184e4
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
e30b448
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
182fe07
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
e425098
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
d0b2baf
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
2099411
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
2fca0c8
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
17e2eb3
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
ae7f038
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
269356c
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
82e796f
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
5907d42
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
2e29b6e
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
c973e74
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
871cfdd
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
82d1694
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
localden May 6, 2025
b65ae78
Address comments
xinyuxu1026 May 6, 2025
528ab4a
Update linux-broker-net.md
localden May 6, 2025
1cd63df
add sample code
xinyuxu1026 May 6, 2025
e07e91f
Merge branch 'linux-dotnet-with-broker' of https://github.com/xinyuxu…
xinyuxu1026 May 6, 2025
d83a3a4
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
384f135
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
837040d
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
4a28d7e
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
fe81a0e
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
bac9b31
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
d1bee1e
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
904d17c
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
ee47017
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 6, 2025
23e7903
address comments
xinyuxu1026 May 6, 2025
934edbc
add screenshot and .net install
xinyuxu1026 May 7, 2025
ddffeae
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 8, 2025
749cb8d
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
xinyuxu1026 May 8, 2025
65ce187
add more screenshot
xinyuxu1026 May 8, 2025
b5c37a3
more update
xinyuxu1026 May 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update msal-dotnet-articles/acquiring-tokens/desktop-mobile/linux-bro…
…ker-net.md

Co-authored-by: Scott Addie <[email protected]>
  • Loading branch information
xinyuxu1026 and scottaddie authored May 6, 2025
commit 904d17c371691b1f22bcf107847de8c543909c38
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ class Program
## Sample App
A sample application is available for developers who want to try the authentication broker on Linux. The application is located [in the MSAL.NET GitHub repository](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/tree/main/tests/devapps/WAM/NetWSLWam). The app has a dependency of `libx11-dev` package.

On Debian-based distributions, please run `sudo apt install libx11-dev` to install the package. `libx11` library is used to get the console window handle on Linux. Here is the example code to use `libx11` to get the window handle:
On Debian-based distributions, run `sudo apt install libx11-dev` to install the package. The `libx11` library is used to get the console window handle on Linux. Here's the sample code to use `libx11` to get the window handle:

```csharp
using System;
using System.Runtime.InteropServices;
Expand Down