10 writes to _properties
Microsoft.Build (10)
Instance\ProjectInstance.cs (10)
439_properties = GetImmutablePropertyDictionaryFromImmutableProject(linkedProject); 539_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important. 711_properties = new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count); 774_properties = new PropertyDictionary<ProjectPropertyInstance>(filter.PropertyFilters.Count); 2334_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 2405translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2446translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2781_properties = null; 3090_properties = new PropertyDictionary<ProjectPropertyInstance>(); 3447_properties = new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
456var globalPropertiesRetrievableHashSet = new ImmutableGlobalPropertiesCollectionConverter(linkedProject.GlobalProperties, _properties); 539_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important. 711_properties = new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count); 715_properties.Set(property.DeepClone(_isImmutable)); 785_properties.Set(regularProperty.DeepClone(isImmutable: true)); 1124return (_properties == null) ? 1126new ReadOnlyCollection<ProjectPropertyInstance>(_properties); 1368{ return _properties; } 1557{ return _properties; } 1798_properties.Set(property); 1811_properties.Set(property); 1864return _properties[name]; 1875return _properties.GetProperty(name, startIndex, endIndex); 1894if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 1904if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 1930_properties.Set(property); 2040return _properties.Remove(name); 2302foreach (ProjectPropertyInstance property in _properties) 2334_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 3452_properties.Set(instance);