Skip to content

Commit cbcf2e8

Browse files
authored
Merge pull request #103537 from jmprieur/uwp-qs
Updating the UWP quickstart
2 parents 515acb3 + c351ade commit cbcf2e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/active-directory/develop/quickstart-v2-uwp.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ This section provides more information about the quickstart.
100100
MSAL ([Microsoft.Identity.Client](https://www.nuget.org/packages/Microsoft.Identity.Client)) is the library used to sign in users and request security tokens. The security tokens are used to access an API protected by Microsoft Identity platform for developers. You can install MSAL by running the following command in Visual Studio's *Package Manager Console*:
101101
102102
```powershell
103-
Install-Package Microsoft.Identity.Client -IncludePrerelease
103+
Install-Package Microsoft.Identity.Client
104104
```
105105

106106
### MSAL initialization
@@ -116,6 +116,7 @@ Then, MSAL is initialized using the following code:
116116
```csharp
117117
public static IPublicClientApplication PublicClientApp;
118118
PublicClientApp = PublicClientApplicationBuilder.Create(ClientId)
119+
.WithRedirectUri("https://login.microsoftonline.com/common/oauth2/nativeclient")
119120
.Build();
120121
```
121122

0 commit comments

Comments
 (0)