2 writes to _globalProperties
Microsoft.Build (2)
Definition\ProjectCollection.cs (2)
342
_globalProperties
= new PropertyDictionary<ProjectPropertyInstance>(globalProperties.Count);
368
_globalProperties
= new PropertyDictionary<ProjectPropertyInstance>();
10 references to _globalProperties
Microsoft.Build (10)
Definition\ProjectCollection.cs (10)
348
_globalProperties
.Set(ProjectPropertyInstance.Create(pair.Key, pair.Value));
569
if (
_globalProperties
.Count == 0)
574
dictionary = new Dictionary<string, string>(
_globalProperties
.Count, MSBuildNameIgnoreCaseComparer.Default);
576
foreach (ProjectPropertyInstance property in
_globalProperties
)
881
foreach (ProjectPropertyInstance property in
_globalProperties
)
1436
return
_globalProperties
[name];
1449
ProjectPropertyInstance propertyInGlobalProperties =
_globalProperties
.GetProperty(name);
1453
_globalProperties
.Set(ProjectPropertyInstance.Create(name, value));
1482
set =
_globalProperties
.Remove(name);
1811
EnvironmentProperties,
_globalProperties
, ToolsetLocations);