File tree 3 files changed +29
-1
lines changed 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 5
5
</PropertyGroup >
6
6
7
7
<PropertyGroup >
8
+ <ProductArchitecture Condition =" '$(ProductArchitecture)' == '' " >amd64</ProductArchitecture >
9
+ <ProductArchitecture >$(ProductArchitecture)</ProductArchitecture >
10
+
8
11
<ProductVersion Condition =" '$(ProductVersion)' == '' " >0.0.0</ProductVersion >
9
12
<ProductVersion >$(ProductVersion)</ProductVersion >
10
13
31
34
</ItemGroup >
32
35
33
36
<ItemGroup >
34
- <Compile Include =" installer.wxs" />
37
+ <Compile Include =" installer-$(ProductArchitecture) .wxs" />
35
38
</ItemGroup >
36
39
</Project >
You can’t perform that action at this time.
0 commit comments