8 references to RemoveGlobalProperties
Microsoft.Build (4)
Instance\TaskFactories\TaskHostTask.cs (4)
759if (request.RemoveGlobalProperties is not null) 761removeGlobalProperties = new IList<string>[request.RemoveGlobalProperties.Length]; 762for (int i = 0; i < request.RemoveGlobalProperties.Length; i++) 764removeGlobalProperties[i] = request.RemoveGlobalProperties[i];
Microsoft.Build.Engine.UnitTests (4)
BackEnd\TaskHostCallbackPacket_Tests.cs (4)
122deserialized.RemoveGlobalProperties!.Length.ShouldBe(2); 123deserialized.RemoveGlobalProperties![0].ShouldBe(["Platform"]); 124deserialized.RemoveGlobalProperties[1].ShouldBeNull(); 144deserialized.RemoveGlobalProperties.ShouldBeNull();