Skip to content

Fixed the broken links #110

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions ServicePrincipalsSamples/ClientLibsNET/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ These .NET Core samples show how to use Azure AD Service Principals and Managed

| Project | Description |
|--|--|
| [0-SimpleConsoleApp-AppRegistration](/0-SimpleConsoleApp-AppRegistration/) | It uses an Azure AD Application Service Principal to create get a work item. |
| [1-ConsoleApp-AppRegistration](/1-ConsoleApp-AppRegistration/) | It uses an Azure AD Application Service Principal to perform multiple operations in Azure DevOps. It also shows how to use the MSAL in-memory token cache and handle the access token expiration. |
| [2-ConsoleApp-ManagedIdentity](/2-ConsoleApp-ManagedIdentity/) | It uses an Azure AD Managed Identity to get a work item. |
| [3-AzureFunction-ManagedIdentity](/3-AzureFunction-ManagedIdentity/) | It uses an Azure AD Managed Identity to get a work item using an Azure Function. |
| [0-SimpleConsoleApp-AppRegistration](/ServicePrincipalsSamples/ClientLibsNET/0-SimpleConsoleApp-AppRegistration/) | It uses an Azure AD Application Service Principal to create get a work item. |
| [1-ConsoleApp-AppRegistration](/ServicePrincipalsSamples/ClientLibsNET/1-ConsoleApp-AppRegistration/) | It uses an Azure AD Application Service Principal to perform multiple operations in Azure DevOps. It also shows how to use the MSAL in-memory token cache and handle the access token expiration. |
| [2-ConsoleApp-ManagedIdentity](/ServicePrincipalsSamples/ClientLibsNET/2-ConsoleApp-ManagedIdentity/) | It uses an Azure AD Managed Identity to get a work item. |
| [3-AzureFunction-ManagedIdentity](/ServicePrincipalsSamples/ClientLibsNET/3-AzureFunction-ManagedIdentity/) | It uses an Azure AD Managed Identity to get a work item using an Azure Function. |

## Usage with Azure DevOps .NET client libs

Expand Down Expand Up @@ -55,4 +55,4 @@ var token = new VssAadToken((scopes) => app.AcquireTokenForClient(scopes).Execut
var credentials = new VssAadCredential(token);
```

See [1-ConsoleApp-AppRegistration](/1-ConsoleApp-AppRegistration/) for more information.
See [1-ConsoleApp-AppRegistration](/ServicePrincipalsSamples/ClientLibsNET/1-ConsoleApp-AppRegistration/) for more information.