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