10 writes to _properties
Microsoft.Build (10)
Instance\ProjectInstance.cs (10)
442_properties = GetImmutablePropertyDictionaryFromImmutableProject(linkedProject); 570_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); 2429_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 2500translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2541translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2886_properties = null; 3195_properties = new PropertyDictionary<ProjectPropertyInstance>(); 3550_properties = new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
459var globalPropertiesRetrievableHashSet = new ImmutableGlobalPropertiesCollectionConverter(linkedProject.GlobalProperties, _properties); 570_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); 1468{ return _properties; } 1651{ return _properties; } 1884_properties.Set(property); 1897_properties.Set(property); 1957return _properties[name]; 1968return _properties.GetProperty(name, startIndex, endIndex); 1987if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 1997if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 2023_properties.Set(property); 2133return _properties.Remove(name); 2395foreach (ProjectPropertyInstance property in _properties) 2429_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 3555_properties.Set(instance);