C# console app deployment

前端 未结 7 1849
时光说笑
时光说笑 2020-12-11 22:54

I have a simple C# console application developed on my local machine using VS2008 Pro. I want to know how to deploy this solution onto a network share folder?

A simi

7条回答
  •  萌比男神i
    2020-12-11 23:30

    It would be mostly the same process as the Java program. To deploy, compile the program and copy the exe from the bin folder (along with any dependencies) to the network share.

    To run the program users would open the command prompt, navigate to shared folder, and type "programName.exe inputParameter1 inputParameter2"

提交回复
热议问题