Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you run a console application in the Visual Studio output window, instead of opening a new command prompt?

I'm developing a simple console application in Visual Studio 2008 and want to run it in the output window inside Visual Studio 2008, instead of having a separate command prompt window come up. Is there a way to do this?

like image 743
yood.mp Avatar asked Oct 11 '08 18:10

yood.mp


2 Answers

If you run the console app in the post build step it's output will go to the output window. The inability to do this easily has been on of my biggest peeves with VS (any version)

like image 181
Harald Scheirich Avatar answered Sep 18 '22 09:09

Harald Scheirich


ctrl+F5 seems to "start without debugging" in the debugging menu.

like image 24
Gammerz Avatar answered Sep 19 '22 09:09

Gammerz