aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-30 10:47:25 -0700
committerRob Mensching <rob@firegiant.com>2018-07-30 10:47:25 -0700
commita076dd488c3daa82fd3326cfd01d8d1183d2cc02 (patch)
tree461d9ca4c2bc520652152cb029306ec81bce2449 /src
parenta7f145fa0669ab988e69e031f346360072306a94 (diff)
downloadwix-a076dd488c3daa82fd3326cfd01d8d1183d2cc02.tar.gz
wix-a076dd488c3daa82fd3326cfd01d8d1183d2cc02.tar.bz2
wix-a076dd488c3daa82fd3326cfd01d8d1183d2cc02.zip
Explicitly make WixBuildTools.TestSupport packable
Not clear why we have to be explicit but package wasn't being created until explicitly stated as IsPackable.
Diffstat (limited to 'src')
-rw-r--r--src/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj b/src/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj
index baedb0c2..01f733ba 100644
--- a/src/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj
+++ b/src/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj
@@ -2,8 +2,10 @@
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. --> 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 3
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5
5 <PropertyGroup> 6 <PropertyGroup>
6 <TargetFramework>netstandard2.0</TargetFramework> 7 <TargetFramework>netstandard2.0</TargetFramework>
8 <IsPackable>true</IsPackable>
7 <DebugType>embedded</DebugType> 9 <DebugType>embedded</DebugType>
8 <PublishRepositoryUrl>true</PublishRepositoryUrl> 10 <PublishRepositoryUrl>true</PublishRepositoryUrl>
9 </PropertyGroup> 11 </PropertyGroup>
@@ -14,11 +16,12 @@
14 </ItemGroup> 16 </ItemGroup>
15 17
16 <ItemGroup> 18 <ItemGroup>
17 <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63102-01" PrivateAssets="All"/> 19 <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63102-01" PrivateAssets="All" />
18 <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" /> 20 <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
19 </ItemGroup> 21 </ItemGroup>
20 22
21 <ItemGroup> 23 <ItemGroup>
22 <PackageReference Include="xunit" Version="2.4.0" /> 24 <PackageReference Include="xunit" Version="2.4.0" />
23 </ItemGroup> 25 </ItemGroup>
26
24</Project> 27</Project>