4 writes to _globalProperties
Microsoft.Build (4)
BackEnd\BuildManager\BuildParameters.cs (4)
252_globalProperties = new PropertyDictionary<ProjectPropertyInstance>(projectCollection.GlobalPropertiesCollection); 281_globalProperties = other._globalProperties != null ? new PropertyDictionary<ProjectPropertyInstance>(other._globalProperties) : null; 467_globalProperties = new PropertyDictionary<ProjectPropertyInstance>(value.Count); 897translator.TranslateProjectPropertyInstanceDictionary(ref _globalProperties);
6 references to _globalProperties
Microsoft.Build (6)
BackEnd\BuildManager\BuildParameters.cs (6)
281_globalProperties = other._globalProperties != null ? new PropertyDictionary<ProjectPropertyInstance>(other._globalProperties) : null; 461return new ReadOnlyConvertingDictionary<string, ProjectPropertyInstance, string>(_globalProperties, 470_globalProperties[property.Key] = ProjectPropertyInstance.Create(property.Key, property.Value); 721internal PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesInternal => _globalProperties; 1007_toolsetProvider = new ToolsetProvider(DefaultToolsVersion, _environmentProperties, _globalProperties, ToolsetDefinitionLocations);