Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging with command line arguments in Visual Studio 2015

I might be blind, but I can't for the life of me find out where to set command line arguments for debugging in Visual Studio 2015.

In VS 2013 (and every other version I've used) you can add them in the Debugging section of a project properties page). Is there any way I can set them via the IDE in VS 2015?

like image 975
Jack Smith Avatar asked Aug 03 '15 09:08

Jack Smith


1 Answers

For .Net builds, open project properties and select the Debug tab. Command line args can be added under the 'Start Options' section. For native builds, open project properties and select the Debugging tab under Configuration Properties. Command line args can be added (for the local debugger) in the 'Command Arguments' field.

like image 127
Stephen Avatar answered Oct 24 '22 17:10

Stephen