C#

In launch.json, needed to add/modify the following for terminal based apps. source for notes

"console": "internalConsole",

needs to change to

"console": "integratedTerminal",

This will allow Console.ReadLine(); to work while debugging or executing in vscode


Added the following so that during builds, it does not switch to Debug Console and you have to manually click on Terminal again.

"internalConsoleOptions": "neverOpen", 

Just a note as I though this was pretty cool for Debuging/Exection. This will launch the default terminal outside of vscode.

"console": "externalTerminal",