47

I've tried <UIRef Id="WixUI_Minimal" />, but I get "Unresolved reference to symbol WixUI:WixUIMinimal". What am I doing wrong?

Henry Disoza
  • 223
  • 3
  • 11
Adam Tegen
  • 25,378
  • 33
  • 125
  • 153

5 Answers5

91

The wixui extension is no longer wixui.wixlib. It was rolled into the WixUIExtension.

If you are on the command line, add -ext WixUIExtension to the call to light.exe.

If you have a WiX project in Visual Studio, add a reference to "WixUIExtension" by right clicking on "References" in the Solution Explorer.

See the WiXUI Dialog Sets page for WIX3.

Pavel Anikhouski
  • 21,776
  • 12
  • 51
  • 66
Adam Tegen
  • 25,378
  • 33
  • 125
  • 153
  • 40
    If anybody's wondering where the dll is, it should be in `C:\Program Files (x64)\WiX Toolset [version]\bin\ `. – Alejandro Moreno Dec 28 '12 at 16:45
  • 10
    Why they've decided not to include any Visual Studio instruction on that documentation page is beyond me. – Drazen Bjelovuk May 13 '16 at 22:21
  • 1
    For your 2017 question, you are probably using NuGet to fetch the WixInstaller. If so, the location of the DLL is your solution folder\packages\Wix\tools\WixUIExtension.dll. I'm adding all this to my MSI project (not the EXE bundle). It compiles. LOL – user922020 Jan 29 '18 at 22:52
  • FWIW you need to add the DLL reference to the Wix project in your solution. – Alan B Apr 04 '19 at 13:09
9

If you use the .wixproj directly via MSBuild, without Visual Studio, the required modification is to add this:

<Project ...>
  ...
  <ItemGroup>
    <WixExtension Include="WixUIExtension">
      <HintPath>$(WixToolPath)WixUIExtension.dll</HintPath>
      <Name>WixUIExtension</Name>
    </WixExtension>
  </ItemGroup>
  ...
</Project>
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Remus Rusanu
  • 288,378
  • 40
  • 442
  • 569
  • You can insert this code snippet also with **Visual Studio**. ... **unload the project** in the project explorer with right-click to the project name. Then make **double click** to the project name. The `*.wixproj` file opens and you **can edit** it. After saving reload the project and you are done. – Beauty Feb 01 '21 at 11:42
1

You need to add reference of WixUIExtension in your WIX project to resolve this issue.

Henry Disoza
  • 223
  • 3
  • 11
1

See Re: (WiX-users) How to get off the ground with WixUI_Minimal?

froh42
  • 5,190
  • 6
  • 30
  • 42
1

Below is a link to a good example on how to custimize the WixUIExtensions.

Customised UIs for Wix