blob: bb1764fbdf893270d499a10004cff1a187d09454 (
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>
<SignOutput>true</SignOutput>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ThmViewerPackage\ThmViewerPackage.wixproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
</ItemGroup>
<UsingTask TaskName="GenerateMetadata" AssemblyFile="$(BaseOutputPath)$(Configuration)\net472\MetadataTask.dll" />
<Target Name="GenerateMetadata" AfterTargets="AfterBuild">
<GenerateMetadata TargetFile="$(TargetPath)" WixpdbFile="$(TargetPdbPath)" />
</Target>
</Project>
|