Skip to content

Commit 776af96

Browse files
resolve acrolinx flagged issues
1 parent 4e1373c commit 776af96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You have two options to start your quickstart application:
3333

3434
1. Go to the [Azure portal - App registrations](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/applicationsListBlade/quickStartType/UwpQuickstartPage/sourceType/docs) quickstart experience.
3535
1. Enter a name for your application and select **Register**.
36-
1. Follow the instructions to download and automatically configure your new application for you in one click.
36+
1. Follow the instructions to download and automatically configure your new application.
3737

3838
### Option 2: Register and manually configure your application and code sample
3939

@@ -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](./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*:
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`](/dotnet/api/microsoft.identity.client.acquiretokeninteractiveparameterbuilder?) and `[AcquireTokenSilent](/dotnet/api/microsoft.identity.client.acquiretokensilentparameterbuilder)`.
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)