main
wixproj 30 lines 900 Bytes
Raw
1 <!-- 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. -->
2
3 <Project Sdk='WixToolset.Sdk'>
4 <PropertyGroup>
5 <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
6 <SuppressValidation>true</SuppressValidation>
7 </PropertyGroup>
8
9 <ItemGroup>
10 <BindInputPaths Include="_data" />
11 </ItemGroup>
12
13 <ItemGroup>
14 <PackageReference Include="Wixtoolset.Heat" />
15 </ItemGroup>
16
17 <Target Name="ManualHarvest" BeforeTargets="BeforeBuild">
18 <HeatDirectory
19 Directory="_data"
20 AutogenerateGuids="true"
21 ComponentGroupName="HarvestedComponents"
22 DirectoryRefId="ApplicationFolder"
23 OutputFile="obj\_g.wxs"
24 />
25 <ItemGroup>
26 <Compile Include="obj\_g.wxs" />
27 </ItemGroup>
28 </Target>
29
30 </Project>