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