Hossain Muctadir
Hossain Muctadir

Reputation: 3626

Creating desktop application installer in Visual Studio 2012

I am working on a .net project with VS 2012 which needs an installer for users to be able to install the application in their computer. But, I can not find the usual VS 2010 like installer project in the new project dialog. After looking on the internet for a while I see that VS 2012 does not include the option anymore. So, how am I supposed to create an installer? Does Microsoft provide any kind of alternative? What are the other available options that I can use in this case? Any kind of help is highly appreciated.

Upvotes: 0

Views: 1941

Answers (2)

MBender
MBender

Reputation: 5650

You could try and create a ClickOnce installer. However, this is just a quick suggestion, and by no means will it replace a full installer project (like the ones available in VS2010). However, if all you want is to put some files on the target machine and let the user run them, this should suffice. ClickOnce has a small added bonus of installing any (most?) prerequisites.

Publish = ClickOnce

Upvotes: 0

Yan Sklyarenko
Yan Sklyarenko

Reputation: 32270

The setup and deployment project was retired. There are alternatives:

  • WiX Toolset (mentioned in the above link)
  • InstallShield LE (direct replacement of Setup & Deployment project)

Besides, there are also a number of commercial software for building installation packages.

Upvotes: 1

Related Questions