File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 14
14
ProductVersion=$(ProductVersion);
15
15
</DefineConstants >
16
16
<DefineSolutionProperties >false</DefineSolutionProperties >
17
+ <!-- This is sufficient for x86 and x64 but gets overwritten below for ARM64 -->
17
18
<WixTargetsPath Condition =" '$(WixTargetsPath)' == ''" >$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath >
18
19
</PropertyGroup >
19
20
24
25
</DefineConstants >
25
26
</PropertyGroup >
26
27
28
+ <PropertyGroup Condition =" '$(Platform)' == 'ARM64'" >
29
+ <!-- Assumes WixToolPath input is provided at runtime -->
30
+ <WixTargetsPath >$(WixToolPath)Wix.targets</WixTargetsPath >
31
+ <WixTasksPath >$(WixToolPath)wixtasks.dll</WixTasksPath >
32
+ </PropertyGroup >
33
+
27
34
<ItemGroup >
28
35
<BindInputPaths Include =" ..\..\..\bin\$(Platform)\$(Configuration)" />
29
36
</ItemGroup >
Original file line number Diff line number Diff line change 11
11
<?elseif $(var.Platform) = " x86" ?>
12
12
<?define ProgramFilesFolder = " ProgramFilesFolder" ?>
13
13
<?define UpgradeCode = " 2A1799F1-5B26-4DDC-A0C7-03F75C4C08D2" ?>
14
+ <?elseif $(var.Platform) = " ARM64" ?>
15
+ <?define ProgramFilesFolder = " ProgramFiles64Folder" ?>
16
+ <?define UpgradeCode = " 5D153A07-920A-4978-8B33-8447DD4C42F9" ?>
14
17
<?else ?>
15
18
<?error Platform $(var.Platform) is not supported ?>
16
19
<?endif ?>
You can’t perform that action at this time.
0 commit comments