2 writes to GlobalPropertiesDictionary
Microsoft.Build (2)
BackEnd\BuildManager\BuildRequestData.cs (2)
76GlobalPropertiesDictionary = projectInstance.GlobalPropertiesDictionary; 150GlobalPropertiesDictionary = new PropertyDictionary<ProjectPropertyInstance>(globalProperties.Count);
5 references to GlobalPropertiesDictionary
Microsoft.Build (5)
BackEnd\BuildManager\BuildRequestData.cs (4)
153GlobalPropertiesDictionary.Set(ProjectPropertyInstance.Create(propertyPair.Key, propertyPair.Value)); 193public ICollection<ProjectPropertyInstance> GlobalProperties => (GlobalPropertiesDictionary == null) ? 195new ReadOnlyCollection<ProjectPropertyInstance>(GlobalPropertiesDictionary); 230Execution.GlobalPropertiesLookup.ToGlobalPropertiesLookup(GlobalPropertiesDictionary);
BackEnd\Shared\BuildRequestConfiguration.cs (1)
177_globalProperties = data.GlobalPropertiesDictionary;