We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dotnet test UnitsNet.sln
1 parent 0e91711 commit f5e5149Copy full SHA for f5e5149
Directory.Build.props
@@ -0,0 +1,6 @@
1
+<Project>
2
+ <!-- Workaround for `dotnet test UnitsNet.sln`: https://dasmulli.blog/2018/01/20/make-dotnet-test-work-on-solution-files/ -->
3
+ <Target Name="VSTestIfTestProject">
4
+ <CallTarget Targets="VSTest" Condition="'$(IsTestProject)' == 'true'" />
5
+ </Target>
6
+</Project>
after.UnitsNet.sln.targets
+ <Target Name="VSTest">
+ <MSBuild Projects="@(ProjectReference)" Targets="VSTestIfTestProject" />
0 commit comments