File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
Expand file tree Collapse file tree 3 files changed +29
-1
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ <Wix xmlns =" http://wixtoolset.org/schemas/v4/wxs" xmlns : bal =" http://wixtoolset.org/schemas/v4/wxs/bal" >
2+ <Bundle Name =" Swift Developer Package for Windows aarch64" Version =" $(var.ProductVersion)" Manufacturer =" swift.org" UpgradeCode =" 151d42d9-8877-4b72-ac62-4695243a35c1" >
3+ <BootstrapperApplication >
4+ <bal : WixStandardBootstrapperApplication LicenseUrl =" " LogoFile =" Resources/swift.png" SuppressOptionsUI =" yes" SuppressRepair =" no" Theme =" hyperlinkLicense" />
5+ </BootstrapperApplication >
6+
7+ <Chain >
8+ <?if $(var.RequiredChain) != " " ?>
9+ <?foreach MSI in $(var.RequiredChain) ?>
10+ <MsiPackage SourceFile =" $(var.MSI_LOCATION)\$(var.MSI)" Compressed =" yes" >
11+ <MsiProperty Name =" INSTALL_DEBUGINFO" Value =" [INSTALL_DEBUGINFO]" />
12+ </MsiPackage >
13+ <?endforeach ?>
14+ <?endif ?>
15+
16+ <?if $(var.OptionalChain) != " " ?>
17+ <?foreach MSI in $(var.OptionalChain) ?>
18+ <MsiPackage SourceFile =" $(var.MSI_LOCATION)\$(var.MSI)" Compressed =" yes" Visible =" yes" >
19+ <MsiProperty Name =" INSTALL_DEBUGINFO" Value =" [INSTALL_DEBUGINFO]" />
20+ </MsiPackage >
21+ <?endforeach ?>
22+ <?endif ?>
23+ </Chain >
24+ </Bundle >
25+ </Wix >
Original file line number Diff line number Diff line change 55 </PropertyGroup >
66
77 <PropertyGroup >
8+ <ProductArchitecture Condition =" '$(ProductArchitecture)' == '' " >amd64</ProductArchitecture >
9+ <ProductArchitecture >$(ProductArchitecture)</ProductArchitecture >
10+
811 <ProductVersion Condition =" '$(ProductVersion)' == '' " >0.0.0</ProductVersion >
912 <ProductVersion >$(ProductVersion)</ProductVersion >
1013
3134 </ItemGroup >
3235
3336 <ItemGroup >
34- <Compile Include =" installer.wxs" />
37+ <Compile Include =" installer-$(ProductArchitecture) .wxs" />
3538 </ItemGroup >
3639</Project >
You can’t perform that action at this time.
0 commit comments