c# – 将.NetStandard 2.0 Nuget软件包安装到VS2015 Net 4.6.1项目中

前端之家收集整理的这篇文章主要介绍了c# – 将.NetStandard 2.0 Nuget软件包安装到VS2015 Net 4.6.1项目中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将.NetStandard 2.0(Microsoft.Extensions.Logging.Abstractions)的Nuget包安装到Visual Studio 2015中的Net 4.6.1项目中.但是,虽然Frameworks应该是兼容的,但它并不完全有效:
Install-Package : Could not install package 'Microsoft.Extensions.Logging.Abstractions 2.0.0'. You are trying to 
install this package into a project that targets '.NETFramework,Version=v4.6.1',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.
At line:1 char:1
+ Install-Package Microsoft.Extensions.Logging.Abstractions

我按照这里列出的步骤进行了操作:Entity Framework Core 2.0 on .NET 4.6.1

所以我已经安装了包“NETStandard.Library.NETFramework”,并添加

<PropertyGroup>
  <PackageTargetFallback>netstandard2.0</PackageTargetFallback>
</PropertyGroup>

到csproj.但是,那里没有运气 – 仍然是同样的问题.

有没有办法在我的项目中安装NetStandard 2.0软件包(没有升级VS或安装任何Net Core目标包等)?

谢谢

解决方法

Is there any way to install a NetStandard 2.0 package into my project (without upgrading VS or installing any Net Core targeting packs or such)?

恐怕没有.就像Jon指出的那样,问题的原因是你正在使用Visual Studio 2015.

根据.NET Standard,.NET Standard 2.0支持.NET Framework 4.6.1(带.NET Core 2.0 SDK):

所以我们需要安装.NET Core 2.0 SDK.微软关于.NET Core 2.0预览的每次通信都提到了Visual Studio 2017,所以我认为强烈建议使用Visual Studio 2017来使用.NET Core 2.0.

此外,不推荐使用NuGet软件包NETStandard.Library.NETFramework.

因此,将.NetStandard 2.0 Nuget软件包安装到Net 4.6.1项目中,我强烈建议使用Visual Studio 2017与.NET Core 2.0一起使用.

希望这可以帮助.

原文链接:https://www.f2er.com/csharp/100209.html

猜你在找的C#相关文章