diff options
Diffstat (limited to '')
-rw-r--r-- | src/ext/WixExt.props | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ext/WixExt.props b/src/ext/WixExt.props new file mode 100644 index 00000000..23bce7fa --- /dev/null +++ b/src/ext/WixExt.props | |||
@@ -0,0 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- 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. --> | ||
3 | |||
4 | <Project> | ||
5 | <PropertyGroup> | ||
6 | <PackageIcon>wix.png</PackageIcon> | ||
7 | <IncludeBuildOutput>false</IncludeBuildOutput> | ||
8 | <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> | ||
9 | <NoWarn>NU5100</NoWarn> | ||
10 | </PropertyGroup> | ||
11 | |||
12 | <ItemGroup> | ||
13 | <Content Include="$(MSBuildThisFileDirectory)..\internal\images\wix.png" PackagePath="/" /> | ||
14 | <Content Include="$(MSBuildProjectName).targets" PackagePath="build" /> | ||
15 | <Content Include="$(TargetPath)" PackagePath="wixext4" /> | ||
16 | |||
17 | <PackageReference Include="WixToolset.Extensibility" PrivateAssets="all" /> | ||
18 | </ItemGroup> | ||
19 | </Project> | ||