aboutsummaryrefslogtreecommitdiff
path: root/src/ext/WixExt.props
blob: d2c4929aa6d757c1e36836109622065bb26dac22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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>wixext7</WixExtensionPackageFolder>
    <PackageTags>$(PackageTags) wixext CustomActions</PackageTags>
    <IsWixExtension>true</IsWixExtension>
  </PropertyGroup>

  <ItemGroup>
    <Content Include="$(MSBuildProjectName).targets" PackagePath="build" />
    <Content Include="$(PackageLicenseAcceptanceTargets)" Pack="true" PackagePath="build/CheckLicenseAcceptance.targets" />
    <Content Include="$(TargetPath)" PackagePath="$(WixExtensionPackageFolder)" />

    <PackageReference Include="WixToolset.Extensibility" PrivateAssets="all" />
  </ItemGroup>
</Project>