Adam Dingle
Adam Dingle

Reputation: 3602

how to disable message "You may only use the Microsoft .NET Core Debugger..."?

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

Answers (2)

Bot Project
Bot Project

Reputation: 1

Delete .vscode, now your debugger automatic default

Upvotes: -2

Tee
Tee

Reputation: 37

The way to solve this problem you can change something in your launch.json file

  1. Open .vscode/launch.json
  2. Change the console setting to integratedTerminal

From: "console": "internalConsole",

To: "console": "integratedTerminal",

  1. Save your change and start debugging your project

This works pretty good for me

Upvotes: 0

Related Questions