Command Line Arguments in VS2013

I know you go the the debugger and pass them in. I just need to know the syntax. I know &(ProjectDir) goes first because the text file is in the project directory but how do I pass the text file in as well. The file's name is "tester.txt".
Last edited on
Anyone?
If the text file is in the same directory as your source files, just use "tester.txt" (quotation marks not required.) By default, this is the same directory that $(ProjectDir) resolves to.

If you wish to use the full path, the argument would be:
"$(ProjectDir)tester.txt"
and the quotation marks are required if there are any spaces in the path.
Last edited on
Topic archived. No new replies allowed.