dotnet core 出現Can not find runtime target for framework '.NETCoreApp,Version=v1.6' 的解決辦法


如果你在更新dotnet core新的類庫后運行程序提示如下的錯誤:

        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":{}
}
或者 可以修改
Microsoft.NETCore.App節點的內容如下,Version的版本請對應你的dotnet core版本號
"Microsoft.NETCore.App":{
"type":"platform",

"version":"1.0.1"

}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM