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);
2499
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2540
translator.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)
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
);
1453
{ return
_properties
; }
1642
{ return
_properties
; }
1883
_properties
.Set(property);
1896
_properties
.Set(property);
1956
return
_properties
[name];
1967
return
_properties
.GetProperty(name, startIndex, endIndex);
1986
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
1996
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2022
_properties
.Set(property);
2132
return
_properties
.Remove(name);
2394
foreach (ProjectPropertyInstance property in
_properties
)
2428
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3554
_properties
.Set(instance);