2 writes to GlobalPropertiesDictionary
Microsoft.Build (2)
BackEnd\BuildManager\BuildRequestData.cs (2)
70GlobalPropertiesDictionary = projectInstance.GlobalPropertiesDictionary; 144GlobalPropertiesDictionary = new PropertyDictionary<ProjectPropertyInstance>(globalProperties.Count);
5 references to GlobalPropertiesDictionary
Microsoft.Build (5)
BackEnd\BuildManager\BuildRequestData.cs (4)
147GlobalPropertiesDictionary.Set(ProjectPropertyInstance.Create(propertyPair.Key, propertyPair.Value)); 187public ICollection<ProjectPropertyInstance> GlobalProperties => (GlobalPropertiesDictionary == null) ? 189new ReadOnlyCollection<ProjectPropertyInstance>(GlobalPropertiesDictionary); 224Execution.GlobalPropertiesLookup.ToGlobalPropertiesLookup(GlobalPropertiesDictionary);
BackEnd\Shared\BuildRequestConfiguration.cs (1)
179_globalProperties = data.GlobalPropertiesDictionary;