2 assignments to MSBuild property IsIntegrationTestProject
MSBuildFiles (2)
C\Users\cloudtest\.nuget\packages\microsoft.dotnet.arcade.sdk\9.0.0-beta.24516.2\tools\Tests.props (2)
10
<
IsIntegrationTestProject
>false</IsIntegrationTestProject>
11
<
IsIntegrationTestProject
Condition="$(MSBuildProjectName.EndsWith('.IntegrationTests'))">true</IsIntegrationTestProject>
4 usages of MSBuild property IsIntegrationTestProject
MSBuildFiles (4)
C\Users\cloudtest\.nuget\packages\microsoft.dotnet.arcade.sdk\9.0.0-beta.24516.2\tools\Tests.props (3)
9
<PropertyGroup Condition="'$(
IsIntegrationTestProject
)' == ''">
21
<IsTestProject Condition="'$(IsUnitTestProject)' == 'true' or '$(
IsIntegrationTestProject
)' == 'true' or '$(IsPerformanceTestProject)' == 'true'">true</IsTestProject>
24
<BuildForLiveUnitTesting Condition="'$(BuildForLiveUnitTesting)' == '' and '$(
IsIntegrationTestProject
)' == 'true'">false</BuildForLiveUnitTesting>
C\Users\cloudtest\.nuget\packages\microsoft.dotnet.arcade.sdk\9.0.0-beta.24516.2\tools\Tests.targets (1)
37
<Target Name="IntegrationTest" DependsOnTargets="$(_GetTestsToRunTarget);RunTests" Condition="'$(
IsIntegrationTestProject
)' == 'true'" />