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);
2500
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2541
translator.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)
459
var 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));
1162
return (
_properties
== null) ?
1164
new ReadOnlyCollection<ProjectPropertyInstance>(
_properties
);
1468
{ return
_properties
; }
1651
{ return
_properties
; }
1884
_properties
.Set(property);
1897
_properties
.Set(property);
1957
return
_properties
[name];
1968
return
_properties
.GetProperty(name, startIndex, endIndex);
1987
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
1997
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2023
_properties
.Set(property);
2133
return
_properties
.Remove(name);
2395
foreach (ProjectPropertyInstance property in
_properties
)
2429
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3555
_properties
.Set(instance);