Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Directory.Build.targets - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d11d6a1179021ebf1bcebec840b43e29da3cd628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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>