blob: c6afb59f58a2b86f973ce3a58d5ab5fb16289b02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="utf-8"?>
<!-- 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. -->
<Project>
<PropertyGroup>
<IncludeBuildOutput>false</IncludeBuildOutput>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<NoWarn>NU5100</NoWarn>
<WixExtensionPackageFolder>wixext6</WixExtensionPackageFolder>
</PropertyGroup>
<ItemGroup>
<Content Include="$(MSBuildProjectName).targets" PackagePath="build" />
<Content Include="$(TargetPath)" PackagePath="$(WixExtensionPackageFolder)" />
<PackageReference Include="WixToolset.Extensibility" PrivateAssets="all" />
</ItemGroup>
</Project>
|