[当我在Visual Studio Community 2019(版本16.3.1)中使用Ctrl + F5(无需调试就启动)启动控制台应用程序(.NET Core)时,以下消息将附加在控制台窗口的末尾:
C:\ HelloWorld \ bin \ Debug \ netcoreapp3.0 \ HelloWorld.exe(进程1672)以代码0退出。
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
是否有任何方法可以防止Visual Studio 2019打印此消息?我通过更改选项尝试了preventing a similar message from appearing in the Output Window的解决方案:工具>选项>调试>输出窗口>进程退出消息=关闭,但在控制台窗口中无效。
注意:此消息在Visual Studio 2017中未显示。仅在Visual Studio 2019中并且仅在.NET Core应用程序中显示。