C# console app deployment

前端 未结 7 1861
时光说笑
时光说笑 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条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-11 23:43

    If your application is really "simple", you should be able to just copy the files to a shared folder and run it from there. However, if your "simple" application tries to do things that are restricted by the permissions you might have to configure them with caspol. Assemblies loaded from a shared drive have much fewer permissions than the ones loaded from a local drive.

提交回复
热议问题