electron-wix-msi
electron-wix-msi copied to clipboard
WiX 3.0 throws error 217, while being executed by CI
Basically I'm getting the error described in this stackoverflow question The suggestion is to disable ICE as it's only a verification step and not always important. What I'm having trouble with is how to implement the suggested fix with electron-wix-msi
From the accepted answer
To disable ICE validation you can set SuppressValidation to true in the .wixproj file:
<PropertyGroup>
<SuppressValidation>true</SuppressValidation>
</PropertyGroup>
Or pass the -sval command line option to light.exe.
How can I add either of these options through MSICreator
?