2 assignments to MSBuild property IsIntegrationTestProject
MSBuildFiles (2)
C\Users\cloudtest\.nuget\packages\microsoft.dotnet.arcade.sdk\10.0.0-beta.25510.1\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\10.0.0-beta.25510.1\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\10.0.0-beta.25510.1\tools\Tests.targets (1)
36<Target Name="IntegrationTest" DependsOnTargets="ErrorForMissingTestRunner;$(_GetTestsToRunTarget);RunTests" Condition="'$(IsIntegrationTestProject)' == 'true'" />