I have version 3.14 of Wix toolset and VS2017 and the following problem... when i'm trying get my own dialog order using predefined WixUI_Minimal. Same problem was in 3.11 toolset
- Step Create Wix project in VS2017
- Copy WixUI_Minimal.wxs from
.\wix3-develop\wix3-develop\src\ext\UIExtension\wixlib
- Rename file WixUI_Minimal.wxs to Custom_Minimal.wxs and include into project
Change in Custom_Minimal.wxs:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Fragment> <UI Id="Custom_Minimal">
Add Custom_Minimal ref to Product.wxs:
<Product Id="398c09df-6b61-4b0b-bf18-075a0bb98300" Name="SetupProject2" Language="1033" Version="1.0.0.0" Manufacturer="STH" UpgradeCode="524cff23-7bce-4078-9fb9-51b2eb7a844c"> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> <UIRef Id="Custom_Minimal" />
Trying to build but lot of errors:
Severity Code Description Project File Line Suppression State Error Duplicate symbol 'Property:WixUI_Mode' found. This typically means that an Id is duplicated. Check to make sure all your identifiers of a given type (File, Component, Feature) are unique. SetupProject3 C:\Users\...\source\repos\MtPubSubExample-mt3\SetupProject3\Custom_Minimal.wxs 28
and much more similar...
Anyone know why this is happening??