aboutsummaryrefslogtreecommitdiff
path: root/src/heat/heat.csproj
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-05-22 20:09:02 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-05-22 20:31:54 +1000
commit929f43b2d48f9d35803064774e357c7a2cf76713 (patch)
tree884bf82e0cdaa8bcf3312c5047702666d8db6121 /src/heat/heat.csproj
parent36ed678790b0eb9d39848bf6b384733e57a37b6d (diff)
downloadwix-929f43b2d48f9d35803064774e357c7a2cf76713.tar.gz
wix-929f43b2d48f9d35803064774e357c7a2cf76713.tar.bz2
wix-929f43b2d48f9d35803064774e357c7a2cf76713.zip
Add heat.exe
Diffstat (limited to 'src/heat/heat.csproj')
-rw-r--r--src/heat/heat.csproj34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/heat/heat.csproj b/src/heat/heat.csproj
new file mode 100644
index 00000000..fd56c6c8
--- /dev/null
+++ b/src/heat/heat.csproj
@@ -0,0 +1,34 @@
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>netcoreapp2.1;net461;net472</TargetFrameworks>
7 <OutputType>Exe</OutputType>
8 <Description>Harvester</Description>
9 <Title>WiX Harvester</Title>
10 <DebugType>embedded</DebugType>
11 <PublishRepositoryUrl>true</PublishRepositoryUrl>
12 <!-- <PackAsTool>true</PackAsTool> -->
13 <RuntimeIdentifier Condition=" '$(RuntimeIdentifier)'=='' and '$(TargetFramework)'!='netcoreapp2.1' ">win-x86</RuntimeIdentifier>
14 <PlatformTarget>AnyCPU</PlatformTarget>
15 </PropertyGroup>
16
17 <PropertyGroup>
18 <NoWarn>NU1701</NoWarn>
19 </PropertyGroup>
20
21 <ItemGroup>
22 <ProjectReference Include="..\WixToolset.Tools.Core\WixToolset.Tools.Core.csproj" />
23 </ItemGroup>
24
25 <ItemGroup>
26 <PackageReference Include="WixToolset.Core" Version="4.0.*" />
27 <PackageReference Include="WixToolset.Harvesters" Version="4.0.*" />
28 </ItemGroup>
29
30 <ItemGroup>
31 <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
32 <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" />
33 </ItemGroup>
34</Project>