aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/WixToolset.Netfx.wixext.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/WixToolset.Netfx.wixext.csproj')
-rw-r--r--src/wixext/WixToolset.Netfx.wixext.csproj35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/wixext/WixToolset.Netfx.wixext.csproj b/src/wixext/WixToolset.Netfx.wixext.csproj
new file mode 100644
index 00000000..d925e348
--- /dev/null
+++ b/src/wixext/WixToolset.Netfx.wixext.csproj
@@ -0,0 +1,35 @@
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.Netfx</RootNamespace>
8 <Description>WiX Toolset .NET Framework Extension</Description>
9 <Title>WiX Toolset .NET Framework Extension</Title>
10 <IsTool>true</IsTool>
11 <ContentTargetFolders>build</ContentTargetFolders>
12 </PropertyGroup>
13
14 <ItemGroup>
15 <Content Include="$(MSBuildThisFileName).targets" />
16 <Content Include="netfx.xsd" PackagePath="tools" />
17 <EmbeddedResource Include="$(OutputPath)..\netfx.wixlib" />
18 </ItemGroup>
19
20 <ItemGroup>
21 <ProjectReference Include="$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Data\README.md') " />
22 <PackageReference Include="WixToolset.Data" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Data\README.md') " PrivateAssets="all" />
23
24 <ProjectReference Include="$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Extensibility\README.md') " />
25 <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Extensibility\README.md') " PrivateAssets="all" />
26 </ItemGroup>
27
28 <ItemGroup>
29 <ProjectReference Include="..\wixlib\netfx.wixproj" ReferenceOutputAssembly="false" />
30 </ItemGroup>
31
32 <ItemGroup>
33 <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.7" PrivateAssets="all" />
34 </ItemGroup>
35</Project>