10 writes to _properties
Microsoft.Build (10)
Instance\ProjectInstance.cs (10)
451
_properties
= GetImmutablePropertyDictionaryFromImmutableProject(linkedProject);
581
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important.
764
_properties
= new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count);
837
_properties
= new PropertyDictionary<ProjectPropertyInstance>(filter.PropertyFilters.Count);
2491
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectState._properties);
2562
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2603
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2952
_properties
= null;
3264
_properties
= new PropertyDictionary<ProjectPropertyInstance>();
3622
_properties
= new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
468
var globalPropertiesRetrievableHashSet = new ImmutableGlobalPropertiesCollectionConverter(linkedProject.GlobalProperties,
_properties
);
581
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom.
_properties
); // This brings along the reserved properties, which are important.
764
_properties = new PropertyDictionary<ProjectPropertyInstance>(that.
_properties
.Count);
768
_properties
.Set(property.DeepClone(_isImmutable));
850
_properties
.Set(regularProperty.DeepClone(isImmutable: true));
1175
return (
_properties
== null) ?
1177
new ReadOnlyCollection<ProjectPropertyInstance>(
_properties
);
1519
{ return
_properties
; }
1702
{ return
_properties
; }
1935
_properties
.Set(property);
1948
_properties
.Set(property);
2008
return
_properties
[name];
2019
return
_properties
.GetProperty(name, startIndex, endIndex);
2038
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2048
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2074
_properties
.Set(property);
2186
return
_properties
.Remove(name);
2457
foreach (ProjectPropertyInstance property in
_properties
)
2491
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3627
_properties
.Set(instance);