-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Work around WiX caching issue * Update to WiX 5
- Loading branch information
Showing
7 changed files
with
73 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,7 @@ | |
<!-- Translations --> | ||
<Payload SourceFile="pencil2d_de.wxl" Name="7\thm.wxl" /> | ||
<!-- Assets --> | ||
<Payload SourceFile="pencil2d.ico" /> | ||
<Payload SourceFile="pencil2d.png" /> | ||
<Payload SourceFile="[email protected]" /> | ||
<Payload SourceFile="cog.png" /> | ||
|
@@ -58,8 +59,9 @@ | |
<Variable Name="NightlyBuildTimestamp" Type="string" Value="$(NightlyBuildTimestamp)" /> | ||
<?endif?> | ||
<Chain> | ||
<!-- Set Cache to remove to work around WiX issue #8063 --> | ||
<!-- Set InstallSize to 0 to ensure the size in the ARP entry is correct (since the redist entry is separate) --> | ||
<BundlePackage SourceFile="vc_redist.$(sys.BUILDARCH).exe" Permanent="yes" InstallSize="0" /> | ||
<BundlePackage SourceFile="vc_redist.$(sys.BUILDARCH).exe" Cache="remove" Permanent="yes" InstallSize="0" /> | ||
<MsiPackage SourceFile="$(MsiName).msi"> | ||
<MsiProperty Name="INSTALLDIR" Value="[InstallFolder]" /> | ||
<!-- Need an explicit condition here - Windows Installer and the options page cancel button | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
<AlternateResolution ImageFile="[email protected]" /> | ||
</Image> | ||
|
||
<Window Width="640" Height="413" HexStyle="100a0000" FontId="Normal" Caption="#(loc.Caption)"> | ||
<Window Width="640" Height="413" HexStyle="100a0000" FontId="Normal" IconFile="pencil2d.ico" Caption="#(loc.Caption)"> | ||
<ImageControl X="20" Y="20" Width="600" Height="175" ImageId="pencil2d" Visible="yes"/> | ||
<Label Name="Version" X="20" Y="-22" Width="246" Height="17" FontId="Normal" DisablePrefix="yes" VisibleCondition="WixStdBAShowVersion"> | ||
<Text>#(loc.Version)</Text> | ||
|