@@ -891,7 +891,7 @@ public void GetTargetListsUsesAllTargetsForNonMultitargetingNodes()
891891
892892 projectGraph . ProjectNodes . Count . ShouldBe ( 2 ) ;
893893
894- IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
894+ IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
895895 targetLists . Count . ShouldBe ( projectGraph . ProjectNodes . Count ) ;
896896
897897 targetLists [ GetFirstNodeWithProjectNumber ( projectGraph , 1 ) ] . ShouldBe ( new [ ] { "A" } ) ;
@@ -932,7 +932,7 @@ public void GetTargetsListInnerBuildToInnerBuild()
932932
933933 projectGraph . ProjectNodes . Count . ShouldBe ( 2 ) ;
934934
935- IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
935+ IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
936936 targetLists . Count . ShouldBe ( projectGraph . ProjectNodes . Count ) ;
937937
938938 targetLists [ GetFirstNodeWithProjectNumber ( projectGraph , 1 ) ] . ShouldBe ( new [ ] { "A" } ) ;
@@ -966,7 +966,7 @@ public void GetTargetListsFiltersTargetsForOuterAndInnerBuilds()
966966
967967 projectGraph . ProjectNodes . Count . ShouldBe ( 4 ) ;
968968
969- IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
969+ IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
970970
971971 targetLists . Count . ShouldBe ( projectGraph . ProjectNodes . Count ) ;
972972 var root = GetFirstNodeWithProjectNumber ( projectGraph , 1 ) ;
@@ -1138,7 +1138,7 @@ public void GetTargetListsForComplexMultitargetingGraph()
11381138
11391139 projectGraph . ProjectNodes . Count . ShouldBe ( 12 ) ;
11401140
1141- IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
1141+ IReadOnlyDictionary < ProjectGraphNode , ImmutableList < string > > targetLists = projectGraph . GetTargetLists ( new List < string > { "A" } ) ;
11421142
11431143 targetLists . Count . ShouldBe ( projectGraph . ProjectNodes . Count ) ;
11441144
@@ -1724,7 +1724,7 @@ public void InnerBuildAsRootViaGlobalPropertyShouldNotPropagateInnerBuildPropert
17241724 var root = CreateProjectFile ( env : _env , projectNumber : 1 , projectReferences : new [ ] { 2 } , projectReferenceTargets : null , defaultTargets : null , extraContent : MultitargetingSpecificationPropertyGroup ) . Path ;
17251725 CreateProjectFile ( env : _env , projectNumber : 2 ) ;
17261726
1727- var graph = new ProjectGraph ( root , new Dictionary < string , string > { { InnerBuildPropertyName , "foo" } } ) ;
1727+ var graph = new ProjectGraph ( root , new Dictionary < string , string > { { InnerBuildPropertyName , "foo" } } ) ;
17281728
17291729 var dot = graph . ToDot ( ) ;
17301730
@@ -1789,13 +1789,13 @@ public void InnerBuildsCanHaveSeparateReferences()
17891789
17901790 innerBuildWithCommonReferences . ProjectReferences . Count . ShouldBe ( 4 ) ;
17911791 var referenceNumbersSet = innerBuildWithCommonReferences . ProjectReferences . Select ( r => Path . GetFileNameWithoutExtension ( r . ProjectInstance . FullPath ) ) . ToHashSet ( ) ;
1792- referenceNumbersSet . ShouldBeSameIgnoringOrder ( new HashSet < string > { "2" , "3" } ) ;
1792+ referenceNumbersSet . ShouldBeSameIgnoringOrder ( new HashSet < string > { "2" , "3" } ) ;
17931793
17941794 var innerBuildWithAdditionalReferences = GetNodesWithProjectNumber ( graph , 1 ) . First ( n => n . ProjectInstance . GlobalProperties . TryGetValue ( InnerBuildPropertyName , out string p ) && p == "b" ) ;
17951795
17961796 innerBuildWithAdditionalReferences . ProjectReferences . Count . ShouldBe ( 8 ) ;
17971797 referenceNumbersSet = innerBuildWithAdditionalReferences . ProjectReferences . Select ( r => Path . GetFileNameWithoutExtension ( r . ProjectInstance . FullPath ) ) . ToHashSet ( ) ;
1798- referenceNumbersSet . ShouldBeSameIgnoringOrder ( new HashSet < string > { "2" , "3" , "4" , "5" } ) ;
1798+ referenceNumbersSet . ShouldBeSameIgnoringOrder ( new HashSet < string > { "2" , "3" , "4" , "5" } ) ;
17991799 }
18001800
18011801 [ Fact ]
@@ -1805,7 +1805,7 @@ public void InnerBuildProducedByOuterBuildCanBeReferencedByAnotherNode()
18051805 <ProjectReference Include='1.proj' Properties='{ InnerBuildPropertyName } =a'/>
18061806 </ItemGroup>" ;
18071807
1808- var additionalGlobalProperties = new Dictionary < string , string > { { "x" , "y" } } ;
1808+ var additionalGlobalProperties = new Dictionary < string , string > { { "x" , "y" } } ;
18091809
18101810 var graph = new ProjectGraph ( new [ ]
18111811 {
@@ -1844,7 +1844,7 @@ public void StandaloneInnerBuildsCanBeReferencedWithoutOuterBuilds()
18441844 CreateProjectFile ( env : _env , projectNumber : 2 , projectReferences : new [ ] { 3 } , projectReferenceTargets : null , defaultTargets : null , extraContent : MultitargetingSpecificationPropertyGroup + $ "<PropertyGroup><{ InnerBuildPropertyName } >a</{ InnerBuildPropertyName } ></PropertyGroup>") ;
18451845 CreateProjectFile ( env : _env , projectNumber : 3 ) ;
18461846
1847- var additionalGlobalProperties = new Dictionary < string , string > { { "x" , "y" } } ;
1847+ var additionalGlobalProperties = new Dictionary < string , string > { { "x" , "y" } } ;
18481848
18491849 var graph = new ProjectGraph ( root , additionalGlobalProperties ) ;
18501850
@@ -1871,7 +1871,7 @@ public void InnerBuildsProducedByOuterBuildsCanBeReferencedByOtherInnerBuilds()
18711871 <ProjectReference Include='2.proj' Condition=`'$({ InnerBuildPropertyName } )' == 'a'` Properties='{ InnerBuildPropertyName } =a'/>
18721872 </ItemGroup>" . Cleanup ( ) ;
18731873
1874- var additionalGlobalProperties = new Dictionary < string , string > { { "x" , "y" } } ;
1874+ var additionalGlobalProperties = new Dictionary < string , string > { { "x" , "y" } } ;
18751875
18761876 var root = CreateProjectFile (
18771877 env : _env ,
0 commit comments