8 references to GlobalProperties
Microsoft.Build (4)
Instance\TaskFactories\TaskHostTask.cs (4)
748if (request.GlobalProperties is not null) 750globalProperties = new System.Collections.IDictionary[request.GlobalProperties.Length]; 751for (int i = 0; i < request.GlobalProperties.Length; i++) 753globalProperties[i] = request.GlobalProperties[i];
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskHostCallbackPacket_Tests.cs (4)
119deserialized.GlobalProperties!.Length.ShouldBe(2); 120deserialized.GlobalProperties![0]!["Configuration"].ShouldBe("Release"); 121deserialized.GlobalProperties[1].ShouldBeNull(); 143deserialized.GlobalProperties.ShouldBeNull();