Skip to content

Commit

Permalink
Workaround to fix issue 'microsoft/vstest#1129'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ob1dev committed Mar 29, 2018
1 parent f1fdfb5 commit 242f1c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<Target Name="VSTestIfTestProject">
<CallTarget Targets="VSTest" Condition="'$(IsTestProject)' == 'true'" />
</Target>
</Project>
5 changes: 5 additions & 0 deletions src/after.TechTasks.sln.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<Target Name="VSTest">
<MSBuild Projects="@(ProjectReference)" Targets="VSTestIfTestProject" />
</Target>
</Project>

0 comments on commit 242f1c5

Please sign in to comment.