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. 754_properties = new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count); 827_properties = new PropertyDictionary<ProjectPropertyInstance>(filter.PropertyFilters.Count); 2428_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 2499translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2540translator.TranslateDictionary(ref _properties, ProjectPropertyInstance.FactoryForDeserialization); 2885_properties = null; 3194_properties = new PropertyDictionary<ProjectPropertyInstance>(); 3549_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. 754_properties = new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count); 758_properties.Set(property.DeepClone(_isImmutable)); 840_properties.Set(regularProperty.DeepClone(isImmutable: true)); 1163return (_properties == null) ? 1165new ReadOnlyCollection<ProjectPropertyInstance>(_properties); 1453{ return _properties; } 1642{ return _properties; } 1883_properties.Set(property); 1896_properties.Set(property); 1956return _properties[name]; 1967return _properties.GetProperty(name, startIndex, endIndex); 1986if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 1996if (!_properties.TryGetPropertyUnescapedValue(name, out string unescapedValue)) 2022_properties.Set(property); 2132return _properties.Remove(name); 2394foreach (ProjectPropertyInstance property in _properties) 2428_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState._properties); 3554_properties.Set(instance);