Deploying a C # / .NET Application Without Installer and ClickOnce

I am looking for a solution for:

  • I do not have permission to install the application on the client computer. Therefore, I need to deploy the application without an installer. Like a portable application or a standalone application - something like that.

  • The client computer also has a restriction in its Internet connection, so ClickOnce will not work either.

  • I am using Visual Studio Express 2010. I saw WiX to solve my limitation when configuring my application. But still I can not install the application.

+5
source share
1 answer

CopyLocal true . , ..\Bin . ..\Bin, .

+6

All Articles