Skip to content

Commit ddcc9ca

Browse files
committed
Suppressed installer build warnings
1 parent 3bce39d commit ddcc9ca

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

installer/build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ IF NOT "%PLATFORM%"=="x64" IF NOT "%PLATFORM%"=="x86" (
3030
echo Compiling msisetup_peruser.wxs with candle for %PLATFORM%...
3131
candle -nologo "%SOURCE_DIR%\msisetup_peruser.wxs" -out "%SOURCE_DIR%\peruser.wixobj" -ext WixUIExtension -dPlatform=%PLATFORM% -dVersion=%VERSION%
3232
echo Linking peruser.wixobj into trayslate-%VERSION%-%PLATFORM%.msi with light...
33-
light -nologo "%SOURCE_DIR%\peruser.wixobj" -out "%SOURCE_DIR%\trayslate-%VERSION%-%PLATFORM%.msi" -ext WixUIExtension
33+
light -nologo -sice:ICE61 -sice:ICE91 "%SOURCE_DIR%\peruser.wixobj" -out "%SOURCE_DIR%\trayslate-%VERSION%-%PLATFORM%.msi" -ext WixUIExtension
3434
echo File created: trayslate-%VERSION%-%PLATFORM%.msi
3535
echo.
3636

3737
:: --- Build permachine ---
3838
echo Compiling msisetup_permachine.wxs with candle for %PLATFORM%...
3939
candle -nologo "%SOURCE_DIR%\msisetup_permachine.wxs" -out "%SOURCE_DIR%\permachine.wixobj" -ext WixUIExtension -dPlatform=%PLATFORM% -dVersion=%VERSION%
4040
echo Linking permachine.wixobj into trayslate-%VERSION%-%PLATFORM%-allusers.msi with light...
41-
light -nologo "%SOURCE_DIR%\permachine.wixobj" -out "%SOURCE_DIR%\trayslate-%VERSION%-%PLATFORM%-allusers.msi" -ext WixUIExtension
41+
light -nologo -sice:ICE61 "%SOURCE_DIR%\permachine.wixobj" -out "%SOURCE_DIR%\trayslate-%VERSION%-%PLATFORM%-allusers.msi" -ext WixUIExtension
4242
echo File created: trayslate-%VERSION%-%PLATFORM%-allusers.msi
4343
echo.
4444

installer/msisetup_peruser.wxs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="Alexander Tverskoy" UpgradeCode="45C75BC5-3DDC-453B-A7AB-7E2AE0D88699">
3333
<Package Description="$(var.ProductName)" Comments="Trayslate" Platform="$(var.Platform)" InstallerVersion="200" Compressed="yes" InstallScope="perUser" />
34-
<Property Id="ALLUSERS" Value="2" />
3534
<Property Id="MSIINSTALLPERUSER" Value="1" />
3635
<Property Id="MSIFASTINSTALL" Value="1" />
3736
<Property Id="ARPPRODUCTICON" Value="AppIcon" />

0 commit comments

Comments
 (0)