Skip to content

Commit 53c6330

Browse files
committed
Add MSBuild test targets
Add MSBuild test targets to make the test runner not search for tests within non-test projects as per the following: microsoft/vstest#1129 https://dasmulli.blog/2018/01/20/make-dotnet-test-work-on-solution-files/
1 parent 99bb2fd commit 53c6330

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

Directory.Build.targets

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project>
2+
<Target Name="VSTestIfTestProject">
3+
<CallTarget Targets="VSTest" Condition="'$(IsTestProject)' == 'true'" />
4+
</Target>
5+
</Project>

after.JsonLD.sln.targets

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project>
2+
<Target Name="VSTest">
3+
<MSBuild Projects="@(ProjectReference)" Targets="VSTestIfTestProject" />
4+
</Target>
5+
</Project>

0 commit comments

Comments
 (0)