Skip to content

Commit

Permalink
Minor refactor and fixup in BuildProductBaseMsi target
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonleenaylor committed May 14, 2024
1 parent 8fb2af8 commit 15aec1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Build/Installer.targets
Original file line number Diff line number Diff line change
Expand Up @@ -439,12 +439,12 @@
</MSBuild.ExtensionPack.Framework.Guid>
<Message Text="Generated GUID '$(ProductIdGuid)'"/>
<PropertyGroup>
<MsiFile>$(SafeApplicationName)_$(Revision).msi</MsiFile>
<MsiFile>$(SafeApplicationName)_$(PatchVersionSegment).msi</MsiFile>
<BaseBuildDir>$(InstallerDir)/BaseInstallerBuild</BaseBuildDir>
<BaseBuildArgs>"$(ApplicationName)" $(SafeApplicationName) $(BuildVersion) $(ProductIdGuid) $(UpgradeCodeGuid) "$(AppBuildDir)/$(BinDirSuffix)" "$(AppBuildDir)/$(DataDirSuffix)" $(CopyrightYear) "$(Manufacturer)" $(SafeManufacturer) $(Arch)</BaseBuildArgs>
</PropertyGroup>
<!-- Suppress ICE30 because we and Encoding Converters MM both install Geckofx, resulting in an ICE warning for double ref counting -->
<Exec WorkingDirectory="$(BaseBuildDir)" Command="(set SuppressICE=-sice:ICE30) &amp; buildBaseInstaller.bat $(BaseBuildArgs)" />
<Exec WorkingDirectory="$(BaseBuildDir)" Command="buildBaseInstaller.bat $(BaseBuildArgs)" EnvironmentVariables="SuppressICE=-sice:ICE30" />
<ItemGroup>
<InstallerFiles Include="$(BaseBuildDir)/**/$(SafeApplicationName)_*.exe"/>
<InstallerFiles Include="$(BaseBuildDir)/**/$(SafeApplicationName)_*.msi"/>
Expand Down

0 comments on commit 15aec1d

Please sign in to comment.