4 implementations of GlobalPropertiesDictionary
Microsoft.Build (4)
Definition\Project.cs (1)
4071public 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)
1371PropertyDictionary<ProjectPropertyInstance> IEvaluatorData<ProjectPropertyInstance, ProjectItemInstance, ProjectMetadataInstance, ProjectItemDefinitionInstance>.GlobalPropertiesDictionary
12 references to GlobalPropertiesDictionary
Microsoft.Build (12)
Evaluation\Evaluator.cs (10)
274_isRunningInVisualStudio = string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 278_interactive = interactive || string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 368globalProperties = evaluator._data.GlobalPropertiesDictionary; 819ProjectPropertyInstance configurationData = _data.GlobalPropertiesDictionary["currentsolutionconfigurationcontents"]; 823foreach (var entry in _data.GlobalPropertiesDictionary) 1270if (_data.GlobalPropertiesDictionary == null) 1275foreach (ProjectPropertyInstance globalProperty in _data.GlobalPropertiesDictionary) 1286return _data.GlobalPropertiesDictionary.Count; 1312((IDictionary<string, ProjectPropertyInstance>)_data.GlobalPropertiesDictionary).ContainsKey(propertyElement.Name) && 2210_data.GlobalPropertiesDictionary,
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
95public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrappedData.GlobalPropertiesDictionary;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
144public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrapped.GlobalPropertiesDictionary;