Every time I run my program (Start without debugging) Visual Studio opens a new tab in the terminal is there any way to let it run every time in the same tab?
You can configure your application when it is run it outputs everything to the Application Output window instead of opening a terminal window. To do this:
Note that if you need console input, for example you use Console.ReadKey, then this approach will not work since the Application Output window is not a real console window.