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);
2444
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectState._properties);
2515
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2556
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2901
_properties
= null;
3210
_properties
= new PropertyDictionary<ProjectPropertyInstance>();
3565
_properties
= new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
459
var 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));
1163
return (
_properties
== null) ?
1165
new ReadOnlyCollection<ProjectPropertyInstance>(
_properties
);
1469
{ return
_properties
; }
1658
{ return
_properties
; }
1899
_properties
.Set(property);
1912
_properties
.Set(property);
1972
return
_properties
[name];
1983
return
_properties
.GetProperty(name, startIndex, endIndex);
2002
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2012
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2038
_properties
.Set(property);
2148
return
_properties
.Remove(name);
2410
foreach (ProjectPropertyInstance property in
_properties
)
2444
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3570
_properties
.Set(instance);