Separate out the test exclusions that apply to stable SDKs when we're targeting the latest downlevel runtime.

This should simplify things as we want to run these tests at least some of the time but codeflow ends up removing them.
This commit is contained in:
Marc Paine 2024-01-26 11:46:10 -08:00
parent 8b4320438d
commit 84ea85192b
3 changed files with 205 additions and 201 deletions

View file

@ -1,4 +1,4 @@
<Project>
<Project>
<PropertyGroup>
<CopyBuildOutputToOutputDirectory>false</CopyBuildOutputToOutputDirectory>
@ -215,6 +215,10 @@
<TestArgs>$(TestArgs) -testList SdkIntegrationTests</TestArgs>
</PropertyGroup>
<PropertyGroup Condition="$(StabilizePackageVersion) == 'true'">
<!-- Add list of tests to skip in stable SDKS -->
<TestArgs>$(TestArgs) -testConfigFile "$(MSBuildThisFileDirectory)TestsToSkipStableSDK.xml"</TestArgs>
</PropertyGroup>
<PropertyGroup Condition="('$(OS)' == 'Windows_NT') And ('$(Architecture)' == 'x86')">
<!-- Add list of tests to skip on x86 -->