diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-03 17:00:34 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-03 17:00:34 -0700 |
commit | 592c6e2f7407c291a7bf9ef4c8ce50da9798cc68 (patch) | |
tree | af42d0518b91cdc31590884006a2624bf7cdf4ed /src/ext/UI/wixext/WixToolset.UI.wixext.csproj | |
parent | 0e7fa93306858a9adde5b64ede920492632ba9e6 (diff) | |
download | wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.tar.gz wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.tar.bz2 wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.zip |
Move UI.wixext into ext
Diffstat (limited to 'src/ext/UI/wixext/WixToolset.UI.wixext.csproj')
-rw-r--r-- | src/ext/UI/wixext/WixToolset.UI.wixext.csproj | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ext/UI/wixext/WixToolset.UI.wixext.csproj b/src/ext/UI/wixext/WixToolset.UI.wixext.csproj new file mode 100644 index 00000000..67c949b2 --- /dev/null +++ b/src/ext/UI/wixext/WixToolset.UI.wixext.csproj | |||
@@ -0,0 +1,30 @@ | |||
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 Sdk="Microsoft.NET.Sdk"> | ||
5 | <PropertyGroup> | ||
6 | <TargetFramework>netstandard2.0</TargetFramework> | ||
7 | <RootNamespace>WixToolset.UI</RootNamespace> | ||
8 | <Description>WiX Toolset UI Extension</Description> | ||
9 | <Title>WiX Toolset UI Extension</Title> | ||
10 | <DebugType>embedded</DebugType> | ||
11 | <IncludeSymbols>true</IncludeSymbols> | ||
12 | </PropertyGroup> | ||
13 | |||
14 | <ItemGroup> | ||
15 | <EmbeddedResource Include="$(OutputPath)..\ui.wixlib" /> | ||
16 | </ItemGroup> | ||
17 | |||
18 | <ItemGroup> | ||
19 | <ProjectReference Include="..\wixlib\ui.wixproj" ReferenceOutputAssembly="false" Condition=" '$(NCrunch)'=='' " /> | ||
20 | </ItemGroup> | ||
21 | |||
22 | <ItemGroup> | ||
23 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" PrivateAssets="all" /> | ||
24 | </ItemGroup> | ||
25 | |||
26 | <ItemGroup> | ||
27 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
28 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | ||
29 | </ItemGroup> | ||
30 | </Project> | ||