diff options
Diffstat (limited to 'src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj')
-rw-r--r-- | src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj | 38 |
1 files changed, 38 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..34a1a9f5 --- /dev/null +++ b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj | |||
@@ -0,0 +1,38 @@ | |||
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>net462</TargetFramework> | ||
7 | <Description></Description> | ||
8 | <Title>WiX Toolset MSBuild Tasks</Title> | ||
9 | </PropertyGroup> | ||
10 | |||
11 | <PropertyGroup> | ||
12 | <!-- <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> --> | ||
13 | <NoWarn>NU1701</NoWarn> | ||
14 | </PropertyGroup> | ||
15 | |||
16 | <ItemGroup> | ||
17 | <Content Include="redirect.wix.targets" CopyToOutputDirectory="PreserveNewest" /> | ||
18 | <Content Include="redirect.wix.ca.targets" CopyToOutputDirectory="PreserveNewest" /> | ||
19 | <Content Include="wix.targets" CopyToOutputDirectory="PreserveNewest" /> | ||
20 | <Content Include="wix.ca.targets" CopyToOutputDirectory="PreserveNewest" /> | ||
21 | <Content Include="wix.harvest.targets" CopyToOutputDirectory="PreserveNewest" /> | ||
22 | <Content Include="wix.signing.targets" CopyToOutputDirectory="PreserveNewest" /> | ||
23 | </ItemGroup> | ||
24 | |||
25 | <ItemGroup> | ||
26 | <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" /> | ||
27 | </ItemGroup> | ||
28 | |||
29 | <ItemGroup> | ||
30 | <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" /> | ||
31 | </ItemGroup> | ||
32 | |||
33 | <ItemGroup> | ||
34 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.0.41" PrivateAssets="all" /> | ||
35 | <PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" PrivateAssets="all" Condition="'$(TargetFramework)'=='net462' " /> | ||
36 | <PackageReference Include="Microsoft.Build.Tasks.Core" Version="15.3.409" PrivateAssets="all" Condition="'$(TargetFramework)'=='netstandard2.0' " /> | ||
37 | </ItemGroup> | ||
38 | </Project> | ||