Search code examples
c#wpfvisual-studio-2012setup-project

Setup project template for vs2012?


I have a wpf application which needs to generate an installer file. The IDE for this project is vs2012. I found there was no setup project template at all in vs2012. I googled the solution and I found template below which was for vs2013. enter link description here

Is there any setup solution for vs2012?


Solution

  • You can go with clickonce solution to deploy your application. It is quite easy to use clickonce. Just google this.

    If you want to generate the installer using setup project than you will definitely require the Setup and Deployment template in Visual studio but unfortunately Microsoft has removed the Setup project template from VS2012.

    In this case you can go with WIX which is a free open source alternative, far more functional, but tricky to set up.

    See the link for more details. VS2013 Windows Service - How to make installer?