4 writes to _globalProperties
Microsoft.Build (4)
BackEnd\BuildManager\BuildParameters.cs (4)
259
_globalProperties
= new PropertyDictionary<ProjectPropertyInstance>(projectCollection.GlobalPropertiesCollection);
290
_globalProperties
= other._globalProperties != null ? new PropertyDictionary<ProjectPropertyInstance>(other._globalProperties) : null;
491
_globalProperties
= new PropertyDictionary<ProjectPropertyInstance>(value.Count);
933
translator.TranslateProjectPropertyInstanceDictionary(ref
_globalProperties
);
6 references to _globalProperties
Microsoft.Build (6)
BackEnd\BuildManager\BuildParameters.cs (6)
290
_globalProperties = other.
_globalProperties
!= null ? new PropertyDictionary<ProjectPropertyInstance>(other.
_globalProperties
) : null;
485
return new ReadOnlyConvertingDictionary<string, ProjectPropertyInstance, string>(
_globalProperties
,
494
_globalProperties
[property.Key] = ProjectPropertyInstance.Create(property.Key, property.Value);
745
internal PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesInternal =>
_globalProperties
;
1044
_toolsetProvider = new ToolsetProvider(DefaultToolsVersion, _environmentProperties,
_globalProperties
, ToolsetDefinitionLocations);