2 writes to _globalProperties
Microsoft.Build (2)
Definition\ProjectCollection.cs (2)
369
_globalProperties
= new PropertyDictionary<ProjectPropertyInstance>(globalProperties.Count);
395
_globalProperties
= new PropertyDictionary<ProjectPropertyInstance>();
10 references to _globalProperties
Microsoft.Build (10)
Definition\ProjectCollection.cs (10)
375
_globalProperties
.Set(ProjectPropertyInstance.Create(pair.Key, pair.Value));
596
if (
_globalProperties
.Count == 0)
601
dictionary = new Dictionary<string, string>(
_globalProperties
.Count, MSBuildNameIgnoreCaseComparer.Default);
603
foreach (ProjectPropertyInstance property in
_globalProperties
)
937
foreach (ProjectPropertyInstance property in
_globalProperties
)
1492
return
_globalProperties
[name];
1505
ProjectPropertyInstance propertyInGlobalProperties =
_globalProperties
.GetProperty(name);
1509
_globalProperties
.Set(ProjectPropertyInstance.Create(name, value));
1538
set =
_globalProperties
.Remove(name);
1868
EnvironmentProperties,
_globalProperties
, ToolsetLocations);