10 writes to _properties
Microsoft.Build (10)
Instance\ProjectInstance.cs (10)
439
_properties
= GetImmutablePropertyDictionaryFromImmutableProject(linkedProject);
539
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important.
711
_properties
= new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count);
774
_properties
= new PropertyDictionary<ProjectPropertyInstance>(filter.PropertyFilters.Count);
2334
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectState._properties);
2405
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2446
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2781
_properties
= null;
3090
_properties
= new PropertyDictionary<ProjectPropertyInstance>();
3447
_properties
= new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
456
var globalPropertiesRetrievableHashSet = new ImmutableGlobalPropertiesCollectionConverter(linkedProject.GlobalProperties,
_properties
);
539
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom.
_properties
); // This brings along the reserved properties, which are important.
711
_properties = new PropertyDictionary<ProjectPropertyInstance>(that.
_properties
.Count);
715
_properties
.Set(property.DeepClone(_isImmutable));
785
_properties
.Set(regularProperty.DeepClone(isImmutable: true));
1124
return (
_properties
== null) ?
1126
new ReadOnlyCollection<ProjectPropertyInstance>(
_properties
);
1368
{ return
_properties
; }
1557
{ return
_properties
; }
1798
_properties
.Set(property);
1811
_properties
.Set(property);
1864
return
_properties
[name];
1875
return
_properties
.GetProperty(name, startIndex, endIndex);
1894
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
1904
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
1930
_properties
.Set(property);
2040
return
_properties
.Remove(name);
2302
foreach (ProjectPropertyInstance property in
_properties
)
2334
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3452
_properties
.Set(instance);