summaryrefslogtreecommitdiff
path: root/src/ext/WixExt.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-10-14 14:27:03 -0700
committerRob Mensching <rob@firegiant.com>2022-10-15 11:45:54 -0700
commita3af25607b56f5ecf21d6712a8367217e5c43eb0 (patch)
tree213634eab88ea51ab6775ea49df85a73a0f54287 /src/ext/WixExt.props
parent08f53f409020b12dffaa2aeefa943b667a4b9328 (diff)
downloadwix-a3af25607b56f5ecf21d6712a8367217e5c43eb0.tar.gz
wix-a3af25607b56f5ecf21d6712a8367217e5c43eb0.tar.bz2
wix-a3af25607b56f5ecf21d6712a8367217e5c43eb0.zip
Use "wixext4" instead of "tools" as the root folder in ".wixext.nupkg"s
Fixes 6944
Diffstat (limited to 'src/ext/WixExt.props')
-rw-r--r--src/ext/WixExt.props19
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>