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