Skip to content

Commit 8c5698c

Browse files
authored
Fix testing build (#163)
Apparently if you include a dependency to xunit then magically your package must set IsPackable.
1 parent 9a9bbfd commit 8c5698c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Cognite.Testing/Cognite.Testing.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@
1616
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1717
<LangVersion>8.0</LangVersion>
1818
<Nullable>enable</Nullable>
19+
<IsPackable>true</IsPackable>
1920
</PropertyGroup>
2021

2122
<ItemGroup>
2223
<None Include="..\LICENSE" Pack="true" Visible="false" PackagePath="" />
2324
</ItemGroup>
2425

2526
<ItemGroup>
26-
<PackageReference Include="xunit" Version="2.4.1" />
27+
<PackageReference Include="xunit.assert" Version="2.4.1" />
28+
<PackageReference Include="xunit.core" Version="2.4.1" />
2729
</ItemGroup>
2830

2931
<ItemGroup>

0 commit comments

Comments
 (0)