在尝试构建面向.NET Standard 1.3(由Xamarin应用程序使用的类库)的项目时,我收到以下消息和失败的构建:
错误:您的项目未引用“.NETPlatform,Version = v5.0” 框架。添加对“.NETPlatform,Version = v5.0”的引用 project.json的“frameworks”部分,然后重新运行NuGet恢复。
project.json
看起来像这样(我没有编辑它,这是最初为我生成的):
{
"supports": {},
"dependencies": {
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
"NETStandard.Library": "1.6.0",
"Newtonsoft.Json": "9.0.1",
"NJsonSchema": "6.5.6190.16910"
},
"frameworks": {
"netstandard1.3": {}
}
}
在线没有关于如何添加它要添加的引用的信息,并且它提供的值不能正常工作。
如何构建此项目?
更新
尝试了此https://github.com/dotnet/roslyn/issues/12918,错误输出已更新为
Error : Your project is not referencing the
".NETStandard,Version=v1.3" framework. Add a reference to
".NETStandard,Version=v1.3" in the "frameworks" section of your
project.json, and then re-run NuGet restore.
更新:
我已经知道它试图在解决方案中构建另一个项目,并且提供了数千个错误
未定义或导入System.Object
答案 0 :(得分:0)
自VS 2017发布以来,我已使用新的csproj样式将我的项目升级到.NET Standard。似乎.NET放弃了project.json,所以我关闭了这个问题。