In IntelliJ IDEA, I liked that the command line is inside the IDE, and does not pop up a separate cmd window. I also liked the ability to enter data by inserting a column of necessary data. In VS, I have to enter each value separately. Is it possible to configure VS so that it has such a terminal?
1 answer
This is possible if you add the Windows Application type instead of the Console application in the project properties. The cmd console will no longer open.
Why put a tick here Options dialog -> Debugging -> "Redirect All Output Window Text To The Immediate Window"
Now the entire output will be written to the output window during the degab. However, to enter text from the keyboard into it will not work.
|