aboutsummaryrefslogtreecommitdiff
path: root/src/tools/heat/heat.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/heat/heat.csproj')
-rw-r--r--src/tools/heat/heat.csproj43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/tools/heat/heat.csproj b/src/tools/heat/heat.csproj
new file mode 100644
index 00000000..b3d38098
--- /dev/null
+++ b/src/tools/heat/heat.csproj
@@ -0,0 +1,43 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 <TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
7 <OutputType>Exe</OutputType>
8 <Description>Harvester</Description>
9 <Title>WiX Toolset Harvester</Title>
10 <DebugType>embedded</DebugType>
11 <PublishRepositoryUrl>true</PublishRepositoryUrl>
12 <RuntimeIdentifiers Condition=" '$(RuntimeIdentifier)'=='' and '$(TargetFramework)'!='netcoreapp3.1' ">win-x86;win-x64</RuntimeIdentifiers>
13 <AppConfig>app.config</AppConfig>
14 <ApplicationManifest>heat.exe.manifest</ApplicationManifest>
15 <RollForward>LatestMajor</RollForward>
16 </PropertyGroup>
17
18 <ItemGroup>
19 <Compile Update="Serialize\WixHarvesterStrings.Designer.cs">
20 <DesignTime>True</DesignTime>
21 <AutoGen>True</AutoGen>
22 <DependentUpon>WixHarvesterStrings.resx</DependentUpon>
23 </Compile>
24 </ItemGroup>
25
26 <ItemGroup>
27 <EmbeddedResource Update="Serialize\WixHarvesterStrings.resx">
28 <Generator>ResXFileCodeGenerator</Generator>
29 <LastGenOutput>WixHarvesterStrings.Designer.cs</LastGenOutput>
30 </EmbeddedResource>
31 </ItemGroup>
32
33 <ItemGroup>
34 <PackageReference Include="WixToolset.Core" />
35 <PackageReference Include="WixToolset.Core.Burn" />
36 </ItemGroup>
37
38 <ItemGroup>
39 <PackageReference Include="Microsoft.Win32.Registry" />
40 <PackageReference Include="System.Diagnostics.PerformanceCounter" />
41 <PackageReference Include="System.DirectoryServices" />
42 </ItemGroup>
43</Project>