Skip to content

Commit

Permalink
Use AzureIdentityAuthenticationProvider from graph core
Browse files Browse the repository at this point in the history
  • Loading branch information
andrueastman committed Jan 18, 2023
1 parent 600a7a8 commit a7685ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Graph/GraphServiceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public GraphServiceClient(
TokenCredential tokenCredential,
IEnumerable<string> scopes = null,
string baseUrl = null
):this(new AzureIdentityAuthenticationProvider(tokenCredential, null, null,scopes?.ToArray() ?? Array.Empty<string>()), baseUrl)
):this(new Microsoft.Graph.Authentication.AzureIdentityAuthenticationProvider(tokenCredential, null, null,scopes?.ToArray() ?? Array.Empty<string>()), baseUrl)
{
}

Expand Down

0 comments on commit a7685ba

Please sign in to comment.