Wrap C# application in .msi installer

At one point, Microsoft did remove the “Visual Studio Installer Project” support from Visual Studio1. And then they later relented and added support back. I can’t remember which versions didn’t have support, I think it was 2012 and 2013.

These days (for VS2017), to get the Visual Studio Installer Project support, you add it from the marketplace:

This extension provides the same functionality that currently exists in Visual Studio 2015 for Visual Studio Installer projects. To use this extension, you can either open the Extensions and Updates dialog, select the online node, and search for “Visual Studio Installer Projects Extension,” or you can download directly from this page.

Personally, however, I’d go with WIX. It does have a learning curve but I think it’s learning worth doing.


1For what I personally see as very good reasons. You had to have a full-blown install of Visual Studio to make them work, they didn’t really integrate with MSBuild, which makes them a pain if/when you want to move to automating your builds.

Leave a Comment