I'm trying to create an installer with a UI, using WiX.
My INSTALLFOLDER is set up using this:
<Directory Id="TARGETDIR"
Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
<Directory Id="ManufacturerFolder"
Name="[Manufacturer]">
<Directory Id="INSTALLFOLDER"
Name="[ProductName]" />
</Directory>
</Directory>
</Directory>
In the <Product> section, I'm defining:
<UIRef Id="WixUI_InstallDir" />
<UIRef Id="WixUI_ErrorProgressText" />
<Property Id="WIXUI_INSTALLDIR"
Value="INSTALLFOLDER" />
When I run the installer and get to the Destination Folder panel, I see:
Install Service to:
C:\Program Files\[Manufacturer]\[ProductName]\
How can I make it evaluate the variables for display?
Note: if I leave them, and click Next, Install and Finish it works. It just looks bad.