1

当我尝试为我的 .NET Framework 4.5 控制台应用程序安装 IdentityModel 的 nuget 包时,出现错误:

Could not install package 'IdentityModel 3.10.10'. You are trying to install
this package into a project that targets '.NETFramework,Version=v4.5', but the
package does not contain any assembly references or content files that are
compatible with that framework. For more information, contact the package author.

但它确实适用于我的面向 .NET Core 2.1 的 ASP.NET Web 应用程序。

是否可以在控制台应用程序中使用这个库,还是我被迫使用 Web 应用程序?

4

1 回答 1

2

IdentityModel 至少需要 .NETFramework 4.5.2 或 NetStandard 2.0

https://www.nuget.org/packages/identitymodel/

请参阅下面 https://docs.microsoft.com/en-us/dotnet/standard/net-standard

于 2019-05-28T14:06:22.323 回答