aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj')
-rw-r--r--src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
new file mode 100644
index 00000000..ec16f8b1
--- /dev/null
+++ b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
@@ -0,0 +1,51 @@
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 <TargetFrameworks>net461;netcoreapp2.1</TargetFrameworks>
7 <Description></Description>
8 <Title>WiX Toolset MSBuild Tasks</Title>
9 <DebugType>embedded</DebugType>
10 <PublishRepositoryUrl>true</PublishRepositoryUrl>
11 </PropertyGroup>
12
13 <PropertyGroup>
14 <NoWarn>NU1701</NoWarn>
15 </PropertyGroup>
16
17 <PropertyGroup>
18 <!-- <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> -->
19 </PropertyGroup>
20
21 <ItemGroup>
22 <Content Include="redirects\wix.targets" CopyToOutputDirectory="PreserveNewest" />
23 <Content Include="redirects\wix.ca.targets" CopyToOutputDirectory="PreserveNewest" />
24 <Content Include="wix.targets" CopyToOutputDirectory="PreserveNewest" />
25 <Content Include="wix.ca.targets" CopyToOutputDirectory="PreserveNewest" />
26 <Content Include="wix.harvest.targets" CopyToOutputDirectory="PreserveNewest" />
27 <Content Include="wix.signing.targets" CopyToOutputDirectory="PreserveNewest" />
28 </ItemGroup>
29
30 <ItemGroup>
31 <ProjectReference Include="$(WixToolsetRootFolder)\Core\src\WixToolset.Core\WixToolset.Core.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Core\README.md') " />
32 <PackageReference Include="WixToolset.Core" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Core\README.md') " />
33
34 <ProjectReference Include="$(WixToolsetRootFolder)\Core\src\WixToolset.Core.Burn\WixToolset.Core.Burn.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Core\README.md') " />
35 <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Core\README.md') " />
36
37 <ProjectReference Include="$(WixToolsetRootFolder)\Core\src\WixToolset.Core.WindowsInstaller\WixToolset.Core.WindowsInstaller.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Core\README.md') " />
38 <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Core\README.md') " />
39 </ItemGroup>
40
41 <ItemGroup>
42 <PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" Condition="'$(TargetFramework)'=='net461' " />
43 <PackageReference Include="Microsoft.Build.Tasks.Core" Version="15.3.409" Condition="'$(TargetFramework)'=='netcoreapp2.1' " />
44 <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" />
45 </ItemGroup>
46
47 <ItemGroup>
48 <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63102-01" PrivateAssets="All"/>
49 <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" />
50 </ItemGroup>
51</Project>