I have a simple C # console application developed on my local machine using VS2008 Pro. I want to know how to deploy this solution to a shared folder?
A similar Java console console is already located (as a JAR file) in the same shared folder. Users just open a command prompt, browse to the shared folder and enter "java -jar programName.jar inputParameter1 inputParameter2"
How can I achieve the same with .NET?
DRags source
share