Skip to content

Commit 4e1373c

Browse files
point to correct identity client reference
1 parent a5e5b26 commit 4e1373c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/active-directory/develop/includes/desktop-app/quickstart-uwp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ When the app's window appears, you can select the **Call Microsoft Graph API** b
9494

9595
### MSAL.NET
9696

97-
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 the Microsoft Identity platform. You can install MSAL by running the following command in Visual Studio's *Package Manager Console*:
97+
MSAL ([Microsoft.Identity.Client](./dotnet/api/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 the Microsoft Identity platform. You can install MSAL by running the following command in Visual Studio's *Package Manager Console*:
9898

9999
```powershell
100100
Install-Package Microsoft.Identity.Client
@@ -121,7 +121,7 @@ The value of `ClientId` is the **Application (client) ID** of the app you regist
121121

122122
### Requesting tokens
123123

124-
MSAL has two methods for acquiring tokens in a UWP app: `AcquireTokenInteractive` and `AcquireTokenSilent`.
124+
MSAL has two methods for acquiring tokens in a UWP app: [`AcquireTokenInteractive`](/dotnet/api/microsoft.identity.client.acquiretokeninteractiveparameterbuilder?) and `[AcquireTokenSilent](/dotnet/api/microsoft.identity.client.acquiretokensilentparameterbuilder)`.
125125

126126
#### Get a user token interactively
127127

0 commit comments

Comments
 (0)