Marcelo Mason
Marcelo Mason

Reputation: 7040

Updating .NET 5 DNX to to 1.0.0-beta6, having issues with missing version of Microsoft.IdentityModel.Protocol.Extensions

My project has the following dependency:

"Microsoft.AspNet.Authentication.OAuthBearer": "1.0.0-beta6-*"

When it tries to restore it fails with:

Unable to locate Microsoft.IdentityModel.Protocol.Extensions >= 2.0.0-beta5-206290920

I can't find that version on Nuget or MyGet. Is this something I can get around?

Upvotes: 0

Views: 250

Answers (2)

Kévin Chalet
Kévin Chalet

Reputation: 42010

You can find the latest version of the Microsoft.IdentityModel.Protocol.Extensions package on MyGet: http://www.myget.org/F/azureadwebstacknightly/

Upvotes: 1

Marcelo Mason
Marcelo Mason

Reputation: 7040

Downgraded Microsoft.AspNet.Authentication.OAuthBearer to beta5, doesn't seem to be any issues.

Upvotes: 0

Related Questions