microsoftgraph / msgraph-sdk-dotnet-auth

Archived - use the TokenCredential classes provided by Azure.Identity. https://docs.microsoft.com/en-us/dotnet/api/overview/azure/identity-readme
https://graph.microsoft.com
MIT License
78 stars 19 forks source link

Update dependency references to always use latest of major versions #58

Closed peombwa closed 4 years ago

peombwa commented 4 years ago

This PR updates Microsoft.Graph.Auth package references to always use the latest versions of current major versions. The affected packages are :

<PackageReference Include="Microsoft.Graph.Core" Version="1.*" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.*" />

This should make it easy for clients and applications that depend on this library to update Microsoft.Graph.Core and Microsoft.Identity.Client to the latest versions without waiting on us to update this library.

This also fixes "Could not load file or assembly" issue with MS Graph PowerShell SDK on Windows PowerShell when a referenced dependency package is of a greater version than what Microsoft.Graph.Auth uses.

Unblocks https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/67#issuecomment-576927434