Let's say you open a brand new solution for a "Console App (.NET Framework)", inside of which you put a simple Hello World line, and a Console.ReadLine()
so it won't quit immediately.
When you hit Start, a new command window will open on top of your existing Visual Studio 2019 window, such that you now have two windows. I'm looking to make the program I'm compiling run instead in the integrated Command Window tab of Visual Studio, to reduce the number of things going on on my screen. I'd prefer to manage the project completely within Visual Studio and not have to keep minimizing/restoring the command window.
Below is a poor Photoshop of what I'm looking for. Is this possible?
Update: Regarding a comment to change the project type to "Windows Application":
- There is no project type with that exact name in Visual Studio 2019 (with the ".NET desktop environment" package installed)
- I want my project to be a Console Application anyway, just executed within VS2019 instead of in an external PowerShell window. The product that I need to deliver must be a Console Application.