electron-userland / electron-wix-msi

:dvd: Create traditional MSI installers for your Electron app
MIT License
319 stars 93 forks source link

WiX 3.0 throws error 217, while being executed by CI #112

Open Qazzian opened 3 years ago

Qazzian commented 3 years ago

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?