1. 程式人生 > >.NET Core 版本不支持的問題

.NET Core 版本不支持的問題

折騰 lob and class com 打開 project 提示 json

分析一個.NET Core開源項目(Ocelot),打開後發現提示當前版本.NET Core 不支持。

錯誤信息如下:

The current .NET SDK does not support targeting .NET Standard 2.0. Either target .NET Standard 1.6 or lower, or use a version of the .NET SDK that supports .NET Standard 2.0.

打開.net 命令行工具,輸入:donet --info

技術分享圖片

版本高於2.0,為什麽還不行呢? 百度…… 折騰了好一會兒,才找到 global.json 將.net core版本改為當前版本,然後重新編譯,通過了!
1
{ 2 "projects": [ "src", "test" ], 3 "sdk": { 4 "version": "2.1.402" 5 } 6 }

.NET Core 版本不支持的問題