blob: aca83108d02bf368b3142604af34451d552ab988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="WixToolset.Sdk">
<PropertyGroup>
<OutputType>Bundle</OutputType>
<OutputPath>$(PackageOutputPath)</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ThmViewerPackage\ThmViewerPackage.wixproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Bal.wixext" />
<PackageReference Include="GitInfo" PrivateAssets="All" />
</ItemGroup>
<UsingTask TaskName="GenerateMetadata" AssemblyFile="$(BaseOutputPath)$(Configuration)\net472\MetadataTask.dll" />
<Target Name="GenerateMetadata" AfterTargets="AfterBuild">
<GenerateMetadata TargetFile="$(TargetPath)" WixpdbFile="$(TargetPdbPath)" />
</Target>
</Project>
|