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)
4036GlobalPropertiesDictionary = globalProperties;
11 references to GlobalPropertiesDictionary
Microsoft.Build (11)
Definition\Project.cs (10)
2114return _data.GlobalPropertiesDictionary.Contains(key); 2123return _data.GlobalPropertiesDictionary.Count; 2132foreach (ProjectPropertyInstance property in _data.GlobalPropertiesDictionary) 2153if (_data.GlobalPropertiesDictionary.Count == 0) 2158var dictionary = new Dictionary<string, string>(_data.GlobalPropertiesDictionary.Count, MSBuildNameIgnoreCaseComparer.Default); 2159foreach (ProjectPropertyInstance property in _data.GlobalPropertiesDictionary) 2969ProjectPropertyInstance existing = _data.GlobalPropertiesDictionary[name]; 2975_data.GlobalPropertiesDictionary.Set(ProjectPropertyInstance.Create(name, escapedValue)); 3190bool result = _data.GlobalPropertiesDictionary.Remove(name); 4327SubToolsetVersion = Toolset.GenerateSubToolsetVersion(GlobalPropertiesDictionary);
Instance\ProjectInstance.cs (1)
662this.CreateGlobalPropertiesSnapshot(data.GlobalPropertiesDictionary);