Reputation: 3626
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
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.
Upvotes: 0
Reputation: 32270
The setup and deployment project was retired. There are alternatives:
Besides, there are also a number of commercial software for building installation packages.
Upvotes: 1