I am trying to find an easier way to test my command line application. It has arguments so I run it from a command prompt. My process is this:
- Build
- Go to the output
- Open command prompt
- Change directory
- Run it
There has to be an easier way not only to debug but to open a command prompt in the current folder.
Thank you for your time.
If you go to the project properties, Debugging settings, you can set the working directory and parameters. If you use the same parameters all of the time, you can enter those in on that screen as well. Then just F5 or Ctrl+F5 to run.
Set a breakpoint at the end of the code to keep it from going away after it is done.