|
1 |
| -<Project Sdk="WixToolset.Sdk/4.0.0"> |
| 1 | +<Project Sdk="WixToolset.Sdk/4.0.1"> |
2 | 2 | <PropertyGroup>
|
3 |
| - <EnableDefaultCompileItems>false</EnableDefaultCompileItems> |
| 3 | + <DefineConstants> |
| 4 | + $(DefineConstants); |
| 5 | + DEVTOOLS_ROOT=$(DEVTOOLS_ROOT); |
| 6 | + TOOLCHAIN_ROOT=$(TOOLCHAIN_ROOT); |
| 7 | + TOOLCHAIN_ROOT_USR_LIB_CLANG=$(TOOLCHAIN_ROOT_USR_LIB_CLANG); |
| 8 | + </DefineConstants> |
4 | 9 | </PropertyGroup>
|
5 | 10 |
|
6 |
| - <PropertyGroup> |
7 |
| - <ProductArchitecture Condition=" '$(ProductArchitecture)' == '' ">amd64</ProductArchitecture> |
8 |
| - <ProductArchitecture>$(ProductArchitecture)</ProductArchitecture> |
9 |
| - |
10 |
| - <ProductVersion Condition=" '$(ProductVersion)' == '' ">0.0.0</ProductVersion> |
11 |
| - <ProductVersion>$(ProductVersion)</ProductVersion> |
12 |
| - </PropertyGroup> |
13 |
| - |
14 |
| - <PropertyGroup> |
15 |
| - <OutputPath>build\</OutputPath> |
16 |
| - <IntermediateOutputPath>build\obj\</IntermediateOutputPath> |
17 |
| - </PropertyGroup> |
18 |
| - |
19 |
| - <Import Project="WiXCodeSigning.targets" /> |
20 |
| - |
21 |
| - <PropertyGroup> |
22 |
| - <DefineConstants>ProductArchitecture=$(ProductArchitecture);ProductVersion=$(ProductVersion);DEVTOOLS_ROOT=$(DEVTOOLS_ROOT);TOOLCHAIN_ROOT=$(TOOLCHAIN_ROOT);TOOLCHAIN_ROOT_USR_LIB_CLANG=$(TOOLCHAIN_ROOT)\usr\lib\clang</DefineConstants> |
23 |
| - </PropertyGroup> |
24 |
| - |
25 |
| - <PropertyGroup> |
26 |
| - <HarvestNoLogo>true</HarvestNoLogo> |
27 |
| - <HarvestGenerateGuidsNow>true</HarvestGenerateGuidsNow> |
28 |
| - </PropertyGroup> |
| 11 | + <ItemGroup> |
| 12 | + <PackageReference Include="WixToolset.Heat" Version="4.0.1" /> |
| 13 | + </ItemGroup> |
29 | 14 |
|
30 |
| - <PropertyGroup Condition=" '$(ProductArchitecture)' == 'amd64' "> |
31 |
| - <InstallerPlatform>x64</InstallerPlatform> |
32 |
| - </PropertyGroup> |
33 |
| - <PropertyGroup Condition=" '$(ProductArchitecture)' == 'arm64' "> |
34 |
| - <InstallerPlatform>arm64</InstallerPlatform> |
35 |
| - <InstallerVersion>500</InstallerVersion> |
36 |
| - </PropertyGroup> |
37 |
| - <PropertyGroup Condition=" '$(ProductArchitecture)' == 'arm' "> |
38 |
| - <InstallerPlatform>arm</InstallerPlatform> |
39 |
| - <InstallerVersion>500</InstallerVersion> |
40 |
| - </PropertyGroup> |
41 |
| - <PropertyGroup Condition=" '$(ProductArchitecture)' == 'x86' "> |
42 |
| - <InstallerPlatform>x86</InstallerPlatform> |
43 |
| - </PropertyGroup> |
| 15 | + <ItemGroup> |
| 16 | + <ProjectReference Include="shared.wixproj" /> |
| 17 | + </ItemGroup> |
44 | 18 |
|
45 | 19 | <ItemGroup>
|
46 |
| - <PackageReference Include="WixToolset.UI.wixext" Version="4.0.0" /> |
47 |
| - <PackageReference Include="WixToolset.Heat" Version="4.0.0" /> |
| 20 | + <Compile Include="bld.wxs" /> |
48 | 21 | </ItemGroup>
|
49 | 22 |
|
50 | 23 | <ItemGroup>
|
|
56 | 29 | <SuppressRegistry>true</SuppressRegistry>
|
57 | 30 | <SuppressRootDirectory>true</SuppressRootDirectory>
|
58 | 31 | </HarvestDirectory>
|
59 |
| - |
60 |
| - <Compile Include="bld.wxs" /> |
61 | 32 | </ItemGroup>
|
62 | 33 | </Project>
|
0 commit comments