Implemented interface member:
property
GlobalPropertiesDictionary
Microsoft.Build.Evaluation.IEvaluatorData<P, I, M, D>.GlobalPropertiesDictionary
1 write to GlobalPropertiesDictionary
Microsoft.Build (1)
Definition\Project.cs (1)
4029
GlobalPropertiesDictionary
= globalProperties;
11 references to GlobalPropertiesDictionary
Microsoft.Build (11)
Definition\Project.cs (10)
2108
return _data.
GlobalPropertiesDictionary
.Contains(key);
2117
return _data.
GlobalPropertiesDictionary
.Count;
2126
foreach (ProjectPropertyInstance property in _data.
GlobalPropertiesDictionary
)
2147
if (_data.
GlobalPropertiesDictionary
.Count == 0)
2152
var dictionary = new Dictionary<string, string>(_data.
GlobalPropertiesDictionary
.Count, MSBuildNameIgnoreCaseComparer.Default);
2153
foreach (ProjectPropertyInstance property in _data.
GlobalPropertiesDictionary
)
2963
ProjectPropertyInstance existing = _data.
GlobalPropertiesDictionary
[name];
2969
_data.
GlobalPropertiesDictionary
.Set(ProjectPropertyInstance.Create(name, escapedValue));
3184
bool result = _data.
GlobalPropertiesDictionary
.Remove(name);
4320
SubToolsetVersion = Toolset.GenerateSubToolsetVersion(
GlobalPropertiesDictionary
);
Instance\ProjectInstance.cs (1)
662
this.CreateGlobalPropertiesSnapshot(data.
GlobalPropertiesDictionary
);