4 implementations of GlobalPropertiesDictionary
Microsoft.Build (4)
Definition\Project.cs (1)
3943public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary { get; }
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
95public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrappedData.GlobalPropertiesDictionary;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
144public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrapped.GlobalPropertiesDictionary;
Instance\ProjectInstance.cs (1)
1422PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.GlobalPropertiesDictionary
12 references to GlobalPropertiesDictionary
Microsoft.Build (12)
Evaluation\Evaluator.cs (10)
294_isRunningInVisualStudio = string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 298_interactive = interactive || string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 391globalProperties = evaluator._data.GlobalPropertiesDictionary; 885ProjectPropertyInstance configurationData = _data.GlobalPropertiesDictionary["currentsolutionconfigurationcontents"]; 889foreach (var entry in _data.GlobalPropertiesDictionary) 1336if (_data.GlobalPropertiesDictionary == null) 1341foreach (ProjectPropertyInstance globalProperty in _data.GlobalPropertiesDictionary) 1352return _data.GlobalPropertiesDictionary.Count; 1378((IDictionary<string, ProjectPropertyInstance>)_data.GlobalPropertiesDictionary).ContainsKey(propertyElement.Name) && 2276_data.GlobalPropertiesDictionary,
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
95public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrappedData.GlobalPropertiesDictionary;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
144public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrapped.GlobalPropertiesDictionary;