Skip to content

Commit 6d27d99

Browse files
committed
Add props file to nuget to force a copy of the dll to the bin
Signed-off-by: Joshua Benjamin <benjamin@syncromatics.com>
1 parent 0c94dd2 commit 6d27d99

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

src/JunitTestLogger/JUnitTestLogger.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,10 @@
1717
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="15.5.0" />
1818
</ItemGroup>
1919

20+
<ItemGroup>
21+
<Content Include="JUnitTestLogger.props">
22+
<PackagePath>build/netcoreapp2.0</PackagePath>
23+
<Pack>true</Pack>
24+
</Content>
25+
</ItemGroup>
2026
</Project>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Content Include="$(MSBuildThisFileDirectory)Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestAdapter.dll">
5+
<Link>Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestAdapter.dll</Link>
6+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
7+
<Visible>False</Visible>
8+
</Content>
9+
</ItemGroup>
10+
</Project>

0 commit comments

Comments
 (0)