Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I develop a small window application in C#. Now I want to create its set up and a proper installation should be done. So how to do it I don't know .
please help me
Posted
Comments
Sergey Alexandrovich Kryukov 24-Jan-13 3:02am    
Small application? Why?
—SA

Listen for a good friendly advice: develop a good application. And one of the best "features" should be its ability to work without installation immediately, no matter where you copy it. In worst case, it might install what's needed in Registry, so you only provide uninstall procedure.

Finally, Microsoft started to highly encourage this "installation" style. The very best open-source product also work like this, and some others support "portable" option, which in modern jargon simply means that the user can choose MSI installation or self-installation.

You say your application is small. Even better: it means that this is your very best option.

If you don't want to follow a good friendly advice, create a standard Visual Studio Setup/Deployment project from a standard template, follow the instruction and make the installation; this is quite easy. And suffer from highly redundant and boring activity. Especially redundant for a small project.

—SA
 
Share this answer
 
 
Share this answer
 
Make a Good Application either its small or big means I want to say it the quality of your application must be productive with features.

So To deploy you can use various methods-here are two simple methods.

Using Installshield for Setup and Deployment in VS 2010[^]
Steps to Create Setup and Deployment Project[^]
 
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