-
Notifications
You must be signed in to change notification settings - Fork 219
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
Fix 3167 (package downgrade when referencing IdentityModel.Tokens from dev) #3168
Fix 3167 (package downgrade when referencing IdentityModel.Tokens from dev) #3168
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit; extra line.
@jmprieur The error happened because Identity Web was the one downgrading the package (because of 5x reference) and IdentityModel was referencing the newer one? |
…che.Memory to 6.x (because of obsolete version 5,x)
It's happening because CredentialLess exposes only netstandard2.0 -> references Microsoft.Extensions.Logging.Abstractions 2.1 through Mirosoft.IdentityModel..Tokens, but then Credentials exposes all the target frameworks, and therefore we needed to re-reference the right Microsoft.Extensions.Logging.Abstractions version per framework, do avoid the package downgrade in other assemblies. |
Fix 3167 (package downgrade when referencing IdentityModel.Tokens from dev)
Removed now un-needed reference
Fixes #3167