10 writes to _properties
Microsoft.Build (10)
Instance\ProjectInstance.cs (10)
441_properties = GetImmutablePropertyDictionaryFromImmutableProject(linkedProject); 569_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important. 753_properties = new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count); 826_properties = new PropertyDictionary<ProjectPropertyInstance>(filter.PropertyFilters.Count); 2417_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 2488translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2529translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2874_properties = null; 3183_properties = new PropertyDictionary<ProjectPropertyInstance>(); 3538_properties = new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
458var globalPropertiesRetrievableHashSet = new ImmutableGlobalPropertiesCollectionConverter(linkedProject.GlobalProperties, _properties); 569_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important. 753_properties = new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count); 757_properties.Set(property.DeepClone(_isImmutable)); 839_properties.Set(regularProperty.DeepClone(isImmutable: true)); 1162return (_properties == null) ? 1164new ReadOnlyCollection<ProjectPropertyInstance>(_properties); 1442{ return _properties; } 1631{ return _properties; } 1872_properties.Set(property); 1885_properties.Set(property); 1945return _properties[name]; 1956return _properties.GetProperty(name, startIndex, endIndex); 1975if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 1985if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 2011_properties.Set(property); 2121return _properties.Remove(name); 2383foreach (ProjectPropertyInstance property in _properties) 2417_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 3543_properties.Set(instance);