@@ -3413,7 +3413,7 @@ public void DotnetRestore_PackageReferenceWithNoVersion_OutputExpectedDiagnostic
34133413
34143414 // P1 (banana) -> X
34153415 // P1 (apple) -> Y
3416- [ PlatformFact ( Platform . Windows ) ]
3416+ [ PlatformFact ( Platform . Windows , Skip = "https://github.com/NuGet/Client.Engineering/issues/3632" ) ]
34173417 public async Task DotnetRestore_WithAliasesOfTheSameFramework_UsesCorrectPackages ( )
34183418 {
34193419 using SimpleTestPathContext pathContext = _dotnetFixture . CreateSimpleTestPathContext ( ) ;
@@ -3433,7 +3433,6 @@ public async Task DotnetRestore_WithAliasesOfTheSameFramework_UsesCorrectPackage
34333433 {
34343434 var xml = XDocument . Load ( stream ) ;
34353435 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3436- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
34373436
34383437 var attributes = new Dictionary < string , string > ( ) { { "Version" , "1.0.0" } } ;
34393438
@@ -3486,7 +3485,7 @@ public async Task DotnetRestore_WithAliasesOfTheSameFramework_UsesCorrectPackage
34863485
34873486 // P (apple) -> Net472 package, with ATF, succeeds
34883487 // P (banana) -> Net472 package, with ATF, fails
3489- [ PlatformFact ( Platform . Windows ) ]
3488+ [ PlatformFact ( Platform . Windows , Skip = "https://github.com/NuGet/Client.Engineering/issues/3632" ) ]
34903489 public async Task DotnetRestore_WithAliasesOfSameFramework_WithAssetTargetFallback_OneSucceedsOneFails ( )
34913490 {
34923491 using SimpleTestPathContext pathContext = _dotnetFixture . CreateSimpleTestPathContext ( ) ;
@@ -3507,7 +3506,6 @@ public async Task DotnetRestore_WithAliasesOfSameFramework_WithAssetTargetFallba
35073506 {
35083507 var xml = XDocument . Load ( stream ) ;
35093508 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3510- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
35113509
35123510 var attributes = new Dictionary < string , string > ( ) { { "Version" , "1.0.0" } } ;
35133511
@@ -3570,7 +3568,7 @@ public async Task DotnetRestore_WithAliasesOfSameFramework_WithAssetTargetFallba
35703568
35713569 // P (apple) -> Net472 package -> Transitive Net472 package, with ATF, succeeds
35723570 // P (banana) -> Net472 package, with ATF, fails
3573- [ PlatformFact ( Platform . Windows ) ]
3571+ [ PlatformFact ( Platform . Windows , Skip = "https://github.com/NuGet/Client.Engineering/issues/3632" ) ]
35743572 public async Task DotnetRestore_WithAliasesOfSameFramework_WithAssetTargetFallback_TransitiveDependenciesFlowCorrectly ( )
35753573 {
35763574 using SimpleTestPathContext pathContext = _dotnetFixture . CreateSimpleTestPathContext ( ) ;
@@ -3597,7 +3595,6 @@ public async Task DotnetRestore_WithAliasesOfSameFramework_WithAssetTargetFallba
35973595 {
35983596 var xml = XDocument . Load ( stream ) ;
35993597 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3600- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
36013598
36023599 var attributes = new Dictionary < string , string > ( ) { { "Version" , "1.0.0" } } ;
36033600
@@ -3665,7 +3662,7 @@ public async Task DotnetRestore_WithAliasesOfSameFramework_WithAssetTargetFallba
36653662
36663663 // P (apple) -> Project2 (apple) -> Package A
36673664 // P (banana) -> Project2 (banana) -> Package B
3668- [ PlatformFact ( Platform . Windows ) ]
3665+ [ PlatformFact ( Platform . Windows , Skip = "https://github.com/NuGet/Client.Engineering/issues/3632" ) ]
36693666 public async Task DotnetRestore_WithAliasesOfSameFrameworkAndProjectReferences_TransitivePackageDependenciesFlowCorrectly ( )
36703667 {
36713668 using SimpleTestPathContext pathContext = _dotnetFixture . CreateSimpleTestPathContext ( ) ;
@@ -3687,7 +3684,6 @@ public async Task DotnetRestore_WithAliasesOfSameFrameworkAndProjectReferences_T
36873684 {
36883685 var xml = XDocument . Load ( stream ) ;
36893686 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3690- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
36913687
36923688 var attributesA = new Dictionary < string , string > ( ) { { "Version" , "1.0.0" } } ;
36933689 var attributesB = new Dictionary < string , string > ( ) { { "Version" , "1.0.0" } } ;
@@ -3737,7 +3733,6 @@ public async Task DotnetRestore_WithAliasesOfSameFrameworkAndProjectReferences_T
37373733 {
37383734 var xml = XDocument . Load ( stream ) ;
37393735 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3740- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
37413736
37423737 // Add project reference to project2
37433738 ProjectFileUtils . AddItem (
@@ -3787,7 +3782,7 @@ public async Task DotnetRestore_WithAliasesOfSameFrameworkAndProjectReferences_T
37873782
37883783 // P (apple) -> Project2
37893784 // P (banana) -> Project3
3790- [ PlatformFact ( Platform . Windows ) ]
3785+ [ PlatformFact ( Platform . Windows , Skip = "https://github.com/NuGet/Client.Engineering/issues/3632" ) ]
37913786 public async Task DotnetRestore_WithAliasesOfSameFramework_MultipleProjectReferencesFlowCorrectly ( )
37923787 {
37933788 using SimpleTestPathContext pathContext = _dotnetFixture . CreateSimpleTestPathContext ( ) ;
@@ -3813,7 +3808,6 @@ public async Task DotnetRestore_WithAliasesOfSameFramework_MultipleProjectRefere
38133808 {
38143809 var xml = XDocument . Load ( stream ) ;
38153810 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3816- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
38173811
38183812 // Add Project2 reference only for apple alias
38193813 ProjectFileUtils . AddItem (
@@ -3940,7 +3934,7 @@ public async Task DotnetRestore_WithAliasesOfTheSameFramework_AndSDKAnalysisLeve
39403934
39413935 // P (apple) -> Project2 with APPLE constant -> Uses Project2Type
39423936 // P (banana) -> Project3 with BANANA constant -> Uses Project3Type
3943- [ PlatformFact ( Platform . Windows ) ]
3937+ [ PlatformFact ( Platform . Windows , Skip = "https://github.com/NuGet/Client.Engineering/issues/3632" ) ]
39443938 public async Task DotnetRestore_WithAliasesOfSameFramework_MultipleProjectReferencesWithConditionalCompilation_BuildSucceeds ( )
39453939 {
39463940 using SimpleTestPathContext pathContext = _dotnetFixture . CreateSimpleTestPathContext ( ) ;
@@ -3990,7 +3984,6 @@ public class Project3Type
39903984 {
39913985 var xml = XDocument . Load ( stream ) ;
39923986 ProjectFileUtils . SetTargetFrameworkForProject ( xml , "TargetFrameworks" , $ "{ apple } ;{ banana } ") ;
3993- ProjectFileUtils . AddProperty ( xml , "SDKAnalysisLevel" , "10.0.300" ) ;
39943987
39953988 // Add Project2 reference only for apple alias
39963989 ProjectFileUtils . AddItem (
0 commit comments