Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<PackageVersion Include="Spectre.Console" Version="0.57.0" />
<PackageVersion Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageVersion Include="System.Text.Json" Version="8.0.5" />
<PackageVersion Include="Tools.InnoSetup" Version="6.7.3" />
<PackageVersion Include="Tools.InnoSetup" Version="7.0.2" />

<!-- Testing -->
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
Expand Down
12 changes: 9 additions & 3 deletions build/windows/installer/Setup.iss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
; This script requires Inno Setup Compiler 6.0.0 or later to compile
; This script requires Inno Setup Compiler 7.0.0 or later to compile
; The Inno Setup Compiler (and IDE) can be found at http://www.jrsoftware.org/isinfo.php
; General documentation on how to use InnoSetup scripts: http://www.jrsoftware.org/ishelp/index.php

; Ensure minimum Inno Setup tooling version
#if VER < EncodeVer(6,0,0)
#error Update your Inno Setup version (6.0.0 or newer)
#if VER < EncodeVer(7,0,0)
#error Update your Inno Setup version (7.0.0 or newer)
#endif

#ifndef PayloadDir
Expand Down Expand Up @@ -70,6 +70,12 @@ AppUpdatesURL={#GcmUrl}
AppContact={#GcmUrl}
AppCopyright={#GcmCopyright}
AppReadmeFile={#GcmReadme}
; We prefer to use the x64 installer for x64 and ARM64 systems
#if RuntimeIdentifier=="win-x86"
SetupArchitecture=x86
#else
SetupArchitecture=x64
#endif
; Windows ARM64 supports installing and running x64 binaries, but not vice versa.
#if RuntimeIdentifier=="win-x64"
ArchitecturesAllowed=x64compatible
Expand Down
Loading