electron-wix-msi icon indicating copy to clipboard operation
electron-wix-msi copied to clipboard

WiX 3.0 throws error 217, while being executed by CI

Open Qazzian opened this issue 3 years ago • 0 comments

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?

Qazzian avatar Mar 10 '21 18:03 Qazzian