📜  dotnet 目标特定框架 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:00.841000             🧑  作者: Mango

代码示例1
// global.json file in root of your project (as far as I understand, 
// where you execute the 'dotnet' command, the CLI is going to go upwards
// until it finds this file and respect its contents - this means that it
// should not affect any other projects - even though its name is global.json)
{
  "sdk": {
    "version": "3.0.0"
  }
}