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);
2488
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2529
translator.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)
458
var 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));
1162
return (
_properties
== null) ?
1164
new ReadOnlyCollection<ProjectPropertyInstance>(
_properties
);
1442
{ return
_properties
; }
1631
{ return
_properties
; }
1872
_properties
.Set(property);
1885
_properties
.Set(property);
1945
return
_properties
[name];
1956
return
_properties
.GetProperty(name, startIndex, endIndex);
1975
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
1985
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2011
_properties
.Set(property);
2121
return
_properties
.Remove(name);
2383
foreach (ProjectPropertyInstance property in
_properties
)
2417
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3543
_properties
.Set(instance);