Can you make Visual Studio 2005 command line arguments for your launcher?

For testing purposes, is there a place in the Visual Studio IDE where you can specify the command line options that you want to send to the startup project when starting from the IDE?

Thanks in advance for your help!

+6
c ++ visual-studio-2005 visual-c ++ - 2005
source share
1 answer

Yes - click Properties for your project, then Debug, then Command Arguments. You can enter your command line arguments there, and they will be passed to your application at startup.

+19
source share

All Articles