I am trying to create a simple wix installer using wixui_minimal and I am having an issue with showing my license text. Instead, when the installer is run it shows a dummy text "Lorem Ipsum" which I understand is a placeholder text.
here is part of the installer code in product.wxs
`
<!-- Top banner. 493 x 58 -->
<WixVariable Id="WixUIBannerBmp" Value="UIBanner.bmp" />
<!-- Background bitmap on welcome and completion dialogs. 493 x 312 -->
<WixVariable Id="WixUIDialogBmp" Value="Dialog.bmp" />
<!--EULA-->
<WixVariable Id="WixUILicenseRtF" Value="license.rtf"/>
<UIRef Id="WixUI_Minimal" />
<Property Id="WIXUI_MINIMAL" Value="INSTALLFOLDER"/>`
I have noticed the build will succeed even if I put gibberish for the "Value" in WixVariable Id="WixUILicenseRtF" Value="license.rtf"/> instead of actual license file.
I have read another post here on issue with dummy text but the solutions offered there did not help.
Thank for any help on this.