2 writes to GlobalPropertiesDictionary
Microsoft.Build (2)
BackEnd\BuildManager\BuildRequestData.cs (2)
75GlobalPropertiesDictionary = projectInstance.GlobalPropertiesDictionary; 149GlobalPropertiesDictionary = new PropertyDictionary<ProjectPropertyInstance>(globalProperties.Count);
5 references to GlobalPropertiesDictionary
Microsoft.Build (5)
BackEnd\BuildManager\BuildRequestData.cs (4)
152GlobalPropertiesDictionary.Set(ProjectPropertyInstance.Create(propertyPair.Key, propertyPair.Value)); 192public ICollection<ProjectPropertyInstance> GlobalProperties => (GlobalPropertiesDictionary == null) ? 194new ReadOnlyCollection<ProjectPropertyInstance>(GlobalPropertiesDictionary); 229Execution.GlobalPropertiesLookup.ToGlobalPropertiesLookup(GlobalPropertiesDictionary);
BackEnd\Shared\BuildRequestConfiguration.cs (1)
192_globalProperties = data.GlobalPropertiesDictionary;