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));
564
if (
_globalProperties
.Count == 0)
569
dictionary = new Dictionary<string, string>(
_globalProperties
.Count, MSBuildNameIgnoreCaseComparer.Default);
571
foreach (ProjectPropertyInstance property in
_globalProperties
)
876
foreach (ProjectPropertyInstance property in
_globalProperties
)
1431
return
_globalProperties
[name];
1444
ProjectPropertyInstance propertyInGlobalProperties =
_globalProperties
.GetProperty(name);
1448
_globalProperties
.Set(ProjectPropertyInstance.Create(name, value));
1477
set =
_globalProperties
.Remove(name);
1806
EnvironmentProperties,
_globalProperties
, ToolsetLocations);