blob: 2aaf5c011dafbddd97ead8436604e894a07cb3d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="WixToolset.Sdk">
<ItemGroup>
<BindInputPaths Include="." />
</ItemGroup>
<PropertyGroup>
<HarvestFileSuppressUniqueIds>true</HarvestFileSuppressUniqueIds>
</PropertyGroup>
<ItemGroup>
<HarvestFile Include="MyProgram.txt">
<ComponentGroupName>TxtProductComponents</ComponentGroupName>
<DirectoryRefId>INSTALLFOLDER</DirectoryRefId>
<SuppressRootDirectory>true</SuppressRootDirectory>
</HarvestFile>
<HarvestFile Include="MyProgram.json">
<ComponentGroupName>JsonProductComponents</ComponentGroupName>
<DirectoryRefId>INSTALLFOLDER</DirectoryRefId>
<SuppressRootDirectory>true</SuppressRootDirectory>
</HarvestFile>
</ItemGroup>
<Import Project="$(HeatTargetsPath)" />
</Project>
|