64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
15 lines
544 B
XML
15 lines
544 B
XML
<Project>
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" Condition=" '$(ArcadeBuild)' == 'true' " />
|
|
|
|
<!-- Map the Arcade "Test" target to the "VSTest" target used by "dotnet test" -->
|
|
<Target Name="Test"
|
|
Condition=" '$(ArcadeBuild)' == 'true' And '$(DisableArcadeTestFramework)' == 'true' ">
|
|
<MSBuild Projects="$(MSBuildProjectFile)" Targets="VSTest" />
|
|
</Target>
|
|
|
|
<Target Name="VSTestIfTestProject">
|
|
<CallTarget Targets="VSTest" Condition="'$(IsTestProject)' == 'true'" />
|
|
</Target>
|
|
|
|
</Project>
|