Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The Windows Installer XML variable 'WixUICostingPopupOptOut' is declared in more than one location. Please remove one of the declarations

Tags:

wix

wix3.7

wix3.6

I have created a setup for my web application using wix 3.7 but on building the WIX setup I got the following Error.

error LGHT0195: The Windows Installer XML variable 'WixUICostingPopupOptOut' is declared in more than one location.  Please remove one of the declarations.

I have searched a lot and got this solution. I have added code below to my Product.wxs

<WixVariable Id="WixUICostingPopupOptOut" Overridable="yes" Value="1"/>

Not worked for me. Kindly help to fixing this issue.

Thanks

like image 471
Adiee Avatar asked Jun 12 '13 05:06

Adiee


1 Answers

Did A quick search and found this link http://www.joyofsetup.com/2010/10/09/experimental-results-part-ii/. "If you’ve built a customized dialog set, remove the WixUICostingPopupOptOut WiX variable definition from your dialog set fragment"

like image 75
Shashwat Gupta Avatar answered Apr 28 '23 12:04

Shashwat Gupta