10 writes to _properties
Microsoft.Build (10)
Instance\ProjectInstance.cs (10)
444
_properties
= GetImmutablePropertyDictionaryFromImmutableProject(linkedProject);
544
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom._properties); // This brings along the reserved properties, which are important.
728
_properties
= new PropertyDictionary<ProjectPropertyInstance>(that._properties.Count);
801
_properties
= new PropertyDictionary<ProjectPropertyInstance>(filter.PropertyFilters.Count);
2416
_properties
= new PropertyDictionary<ProjectPropertyInstance>(projectState._properties);
2487
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2528
translator.TranslateDictionary(ref
_properties
, ProjectPropertyInstance.FactoryForDeserialization);
2868
_properties
= null;
3177
_properties
= new PropertyDictionary<ProjectPropertyInstance>();
3535
_properties
= new PropertyDictionary<ProjectPropertyInstance>(properties.Count);
20 references to _properties
Microsoft.Build (20)
Instance\ProjectInstance.cs (20)
461
var globalPropertiesRetrievableHashSet = new ImmutableGlobalPropertiesCollectionConverter(linkedProject.GlobalProperties,
_properties
);
544
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectToInheritFrom.
_properties
); // This brings along the reserved properties, which are important.
728
_properties = new PropertyDictionary<ProjectPropertyInstance>(that.
_properties
.Count);
732
_properties
.Set(property.DeepClone(_isImmutable));
814
_properties
.Set(regularProperty.DeepClone(isImmutable: true));
1158
return (
_properties
== null) ?
1160
new ReadOnlyCollection<ProjectPropertyInstance>(
_properties
);
1441
{ return
_properties
; }
1630
{ return
_properties
; }
1871
_properties
.Set(property);
1884
_properties
.Set(property);
1944
return
_properties
[name];
1955
return
_properties
.GetProperty(name, startIndex, endIndex);
1974
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
1984
if (!
_properties
.TryGetPropertyUnescapedValue(name, out string unescapedValue))
2010
_properties
.Set(property);
2120
return
_properties
.Remove(name);
2382
foreach (ProjectPropertyInstance property in
_properties
)
2416
_properties = new PropertyDictionary<ProjectPropertyInstance>(projectState.
_properties
);
3540
_properties
.Set(instance);