diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-11 07:37:18 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-11 07:37:18 -0700 |
commit | 985b2683b2717c83a27295b36e09b126083238f9 (patch) | |
tree | 622804d279e0ac58366dee62888e6a317a2b9d41 /src/internal/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj | |
parent | 3f583916719eeef598d10a5d4e14ef14f008243b (diff) | |
parent | 6a24996a2e831cfe402398af65b31fb1ecd575a9 (diff) | |
download | wix-985b2683b2717c83a27295b36e09b126083238f9.tar.gz wix-985b2683b2717c83a27295b36e09b126083238f9.tar.bz2 wix-985b2683b2717c83a27295b36e09b126083238f9.zip |
Merge WixBuildTools
Diffstat (limited to 'src/internal/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj')
-rw-r--r-- | src/internal/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/internal/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj b/src/internal/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj new file mode 100644 index 00000000..f59e5eca --- /dev/null +++ b/src/internal/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj | |||
@@ -0,0 +1,31 @@ | |||
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 | |||
6 | <PropertyGroup> | ||
7 | <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks> | ||
8 | <IsPackable>true</IsPackable> | ||
9 | <DebugType>embedded</DebugType> | ||
10 | <PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
11 | <CreateDocumentationFile>true</CreateDocumentationFile> | ||
12 | <NoWarn>CS1591</NoWarn> | ||
13 | </PropertyGroup> | ||
14 | |||
15 | <ItemGroup> | ||
16 | <PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" /> | ||
17 | <PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.*" /> | ||
18 | <PackageReference Include="WixToolset.Dtf.Compression" Version="4.0.*" /> | ||
19 | <PackageReference Include="WixToolset.Dtf.Compression.Cab" Version="4.0.*" /> | ||
20 | </ItemGroup> | ||
21 | |||
22 | <ItemGroup> | ||
23 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
24 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | ||
25 | </ItemGroup> | ||
26 | |||
27 | <ItemGroup> | ||
28 | <PackageReference Include="xunit.assert" Version="2.4.1" /> | ||
29 | </ItemGroup> | ||
30 | |||
31 | </Project> | ||