Explicitly make WixBuildTools.TestSupport packable
Not clear why we have to be explicit but package wasn't being created until explicitly stated as IsPackable.
Rob Mensching committed
Jul 30, 2018 at 10:47 UTC
a076dd488c3daa82fd3326cfd01d8d1183d2cc02
1 file changed
+4
-1
src/WixBuildTools.TestSupport/WixBuildTools.TestSupport.csproj
+4
-1
@@ -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. -->
3
4
<Project Sdk="Microsoft.NET.Sdk">
5
+
6
<PropertyGroup>
7
<TargetFramework>netstandard2.0</TargetFramework>
8
+ <IsPackable>true</IsPackable>
9
<DebugType>embedded</DebugType>
10
<PublishRepositoryUrl>true</PublishRepositoryUrl>
11
</PropertyGroup>
@@ -14,11 +16,12 @@
16
</ItemGroup>
17
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" />
20
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
21
</ItemGroup>
22
23
<ItemGroup>
24
<PackageReference Include="xunit" Version="2.4.0" />
25
</ItemGroup>
26
+
27
</Project>