12 references to GlobalPropertiesDictionary
Microsoft.Build (7)
BackEnd\BuildManager\BuildRequestData.cs (1)
148GlobalPropertiesDictionary = projectInstance.GlobalPropertiesDictionary;
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
1183propertyDictionaries[i] = new PropertyDictionary<ProjectPropertyInstance>(_requestEntry.RequestConfiguration.Project.GlobalPropertiesDictionary);
BackEnd\Shared\BuildRequestConfiguration.cs (1)
218_globalProperties = instance.GlobalPropertiesDictionary;
Construction\Solution\SolutionProjectGenerator.cs (1)
2073foreach (ProjectPropertyInstance globalProperty in traversalProject.GlobalPropertiesDictionary)
Graph\ProjectGraphNode.cs (1)
90return new ConfigurationMetadata(ProjectInstance.FullPath, ProjectInstance.GlobalPropertiesDictionary);
Graph\ProjectInterpretation.cs (1)
130requesterInstance.GlobalPropertiesDictionary,
Instance\ProjectInstance.cs (1)
725foreach (ProjectPropertyInstance globalProperty in that.GlobalPropertiesDictionary)
Microsoft.Build.Engine.UnitTests (5)
BackEnd\BuildRequestConfiguration_Tests.cs (1)
389Assert.Null(instance.GlobalPropertiesDictionary);
Instance\ProjectInstance_Internal_Tests.cs (4)
267p.GlobalPropertiesDictionary["g1"].EvaluatedValue.ShouldBe("v1"); 268p.GlobalPropertiesDictionary["g2"].EvaluatedValue.ShouldBe("v2"); 496second.GlobalPropertiesDictionary["g1"].EvaluatedValue.ShouldBe("v1"); 497second.GlobalPropertiesDictionary["g2"].EvaluatedValue.ShouldBe("v2");