使用Visual Studio 2017进行多个TargetFramework

时间:2017-04-07 10:18:58

标签: visual-studio asp.net-core-mvc .net-core visual-studio-2017

任何人都可以指导我如何使用Visual Studio 2017定位多个框架吗?

  • netcoreapp1.1
  • net46
  • net45

1 个答案:

答案 0 :(得分:1)

您可以在 csproj 中指定多个版本,如下所示 -

例1:

<TargetFrameworks>netcoreapp1.0;net452</TargetFrameworks>

例2:

<TargetFrameworks>netcoreapp1.1;net462</TargetFrameworks>

请参阅Cross-targeting部分。