DotNetCore跨平台~问题~NETCoreAPP, Version=v1.0' compatible with one of the target runtimes: 'win1
Posted 敢于对过去告一个段落,才有信心掀开新的篇章!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DotNetCore跨平台~问题~NETCoreAPP, Version=v1.0' compatible with one of the target runtimes: 'win1相关的知识,希望对你有一定的参考价值。
新建console项目之后,编译程序出现以下错误:
Can not find runtime target for framework \'.NETCoreAPP, Version=v1.0\' compatible with one of the target runtimes: \'win10-x64, win81-x64, win8-x64, win7-x64\'. Possible causes:
The project has not been restored or restore failed -run \'dotnet restore\'
The project does not list one of \'win10-x64, win81-x64, win7-x64\' in the \'runtimes\'
解决方案:
打开project.json
将以下代码添加到根节点
"runtimes": {
"win10-x64": {}
},
添加后的样子如下:
以上问题就可以得到解决了,事实上就是告诉dotnet core 这个项目要在64位的windows上运行!
以上是关于DotNetCore跨平台~问题~NETCoreAPP, Version=v1.0' compatible with one of the target runtimes: 'win1的主要内容,如果未能解决你的问题,请参考以下文章
DotNetCore跨平台~问题~NETCoreAPP, Version=v1.0' compatible with one of the target runtimes: 'win1
dotnetCore系列:使用Visual Studio code 创建DotNet Core 1.0应用并调试