Reputation: 3602
I'm running Visual Studio Code 1.42.1 on Ubuntu 19.10, using the default C# extension version 1.21.11.
Whenever I launch a C# program using "Start Debugging", or even via "Run Without Debugging", I see this message in the output window:
-------------------------------------------------------------------
You may only use the Microsoft .NET Core Debugger (vsdbg) with
Visual Studio Code, Visual Studio or Visual Studio for Mac software
to help you develop and test your applications.
-------------------------------------------------------------------
This message is annoying. Is there any way to disable it?
Upvotes: 14
Views: 7735
Reputation: 37
The way to solve this problem you can change something in your launch.json file
From:
"console": "internalConsole",
To:
"console": "integratedTerminal",
This works pretty good for me
Upvotes: 0