When I debug my C# code, I don't want to open the internal debug console.
My setting in ".vscode/launch.json" is:
"console": "externalTerminal"
I only need the external console:
I've already disabled the debug console:
But the debug console still appears.
Please help to prevent revealing debug console.
I found a solution, you need to do 2 things:
In the first object of ".vscode/launch.json":
"console": "externalTerminal",
"internalConsoleOptions": "neverOpen",
In the array, first object of ".vscode/tasks.json":
"presentation": {
"reveal": "never"
}