如果我将项目多目标定位到 .Net Core 3.1 和 .Net Framework 4.8 并选择Debug | 开始调试,Visual Studio 2019 使用 .Net Framework 构建目标启动调试会话。
我怎样才能让它启动 .Net Core 构建目标?
这是我的测试项目文件:
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net48;netcoreapp3.1</TargetFrameworks>
</PropertyGroup>
这是测试代码:
using System;
namespace Demo
{
class Program
{
public static void Main(string[] args)
{
#if NET48
Console.WriteLine(".Net Framework");
#else
Console.WriteLine(".Net Core");
#endif
}
}
}
项目中没有其他文件。我正在使用 Visual Studio 2019 版本 16.7.2。