Chris Schiffhauer
Chris Schiffhauer

Reputation: 17290

How to Enable WiX Projects in Visual Studio 2017

In Visual Studio 2017's New Project dialog, there is no entry for Windows Installer XML (WiX).

enter image description here

Is it possible to enable WiX projects in Visual Studio 2017?

Upvotes: 65

Views: 54176

Answers (7)

Alexander
Alexander

Reputation: 560

WiX v3.11.0.1507 provides full support for the VS 2017 Extension For WiX. The Release Notes provide insight into why it has taken so long to provide the extension and compatibility with the extension and older versions of WiX

Note: You can use the "WiX Toolset Visual Studio 2017 Extension" with previous versions of the WiX Toolset but there is a forwards compatibility issue when building managed custom actions that is only fixed in the WiX v3.11 RC release. In other words, if you have managed custom actions and you want to use VS 2017 then you must upgrade to WiX v3.11 RC.

Edit: The VS 2019 Extension is now available.

Edit: The VS 2022 Extension is now available.

The Wix Releases Page has links to the other extensions.

Upvotes: 39

AntoJelastin
AntoJelastin

Reputation: 1

Install the Wix Toolset Visual Studio 2019 Extension and reload the project right-click the project folder in the path and uncheck the read-only after install the Extension reload the Wix use the below URL download https://marketplace.visualstudio.com/items?itemName=WixToolset.WixToolsetVisualStudio2019Extension

Upvotes: 0

Gustavo Mori
Gustavo Mori

Reputation: 8386

WiX now offers support for Visual Studio 2017.

All you have to do is:

Upvotes: 6

Chris Schiffhauer
Chris Schiffhauer

Reputation: 17290

You can manually enable Visual Studio 2017 compatibility with WiX 3.10 or earlier:

  1. Close all instances of Visual Studio.

  2. Copy
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\Microsoft\WiX to
    C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\Extensions\Microsoft\WiX

    (In the destination path, replace "Enterprise" with "Professional" or "Community" depending on your edition.)

    enter image description here

    You may need to provide Administrator permission:

    enter image description here

    The result will look like this:

    enter image description here

  3. Copy C:\Program Files (x86)\MSBuild\Microsoft\WiX to C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Microsoft\WiX

  4. Then execute the following command as Administrator:

    "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\devenv" /setup

    (Again, replace "Enterprise" with "Professional" or "Community" depending on your edition.)

    enter image description here

When you open Visual Studio 2017, WiX 3.10 and earlier projects will be compatible.

enter image description here

Upvotes: 39

Patrick
Patrick

Reputation: 681

I have installed ONLY VS2017 and had to copy from another machine where VS2015 was installed the mentionen folder of @Chris Schiffhauer. The same for the folder of @Basim mentioned. Addiontally I had to copy the "C:\Program Files (x86)\Wix Toolset 3.10\" because when I have installed WiX on my machine in this folder were still some assemblies missing.

Upvotes: 0

Tarek Shawadfy
Tarek Shawadfy

Reputation: 281

The answer by Chris works, but on my machine, for some reason, the Wix folder in "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\Microsoft\WiX" had only one template named "CustomActionCPP.zip". I had to search for a complete Wix folder in other older versions of Visual Studio. It worked for me by copying Wix from "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Microsoft\WiX\ProjectTemplates".

Also, had to apply the answer by Basim, by copying Wix from "C:\Program Files (x86)\MSBuild\Microsoft" to "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\Microsoft".

Upvotes: 1

Basim
Basim

Reputation: 231

I found that I also had to copy the WiX folder from "C:\Program Files (x86)\MSBuild\Microsoft" "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Microsoft". Without this, I got an error trying to load my WiX project that one of the MSBuild targets files couldn't be found.

Upvotes: 17

Related Questions