Click here to Skip to main content
15,906,106 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
What is the best way to publish a windows forms application on an ftp site that does not contain source code using visuL studio 2010
Posted

You never need Visual Studio to run any .NET application. The target computer only needs the redistributable .NET Framework of required version. Describe you prerequisites in your application.

A decent .NET application, in its best deployment style strongly encouraged by Microsoft these days should work immediately after the project's output directory contents is copied in any directory of the target computer, without any installation.

You can create an installation through a setup project in the form of MSI file and deploy the redistributable .NET Framework to be installed in case it is not available on the target computer.

—SA
 
Share this answer
 
Comments
sk saini 15-Jun-11 23:42pm    
Absolutely right.
use the exe file that found at "C:\Users\computer name\Documents\Visual Studio 2005\Projects\WindowsApplication1\WindowsApplication1\bin\Debug"
this is more easier.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900