I've written a C# command line application in visual studio. I would like to be able to run it as a command from the cmd.exe prompt application, after it installs. To do this I need to install the application in such a way that this would work
C:\Users\user3765372\Documents\>myAppName argument
a good example of an application with this functionality ins node.js eg:
C:\Users\user3765372\Documents\>nodejs server.js
Will cause node to run the server.js file. How can I make my program run like this for its commands?
Note my app isn't in Documents... its somewhere else.
I'm using this plugin to create the installer
Update:
This should work.... I think I may be making a mistake: