4 implementations of GlobalPropertiesDictionary
Microsoft.Build (4)
Definition\Project.cs (1)
4113public 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)
281_isRunningInVisualStudio = string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 285_interactive = interactive || string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 377globalProperties = evaluator._data.GlobalPropertiesDictionary; 855ProjectPropertyInstance configurationData = _data.GlobalPropertiesDictionary["currentsolutionconfigurationcontents"]; 859foreach (var entry in _data.GlobalPropertiesDictionary) 1306if (_data.GlobalPropertiesDictionary == null) 1311foreach (ProjectPropertyInstance globalProperty in _data.GlobalPropertiesDictionary) 1322return _data.GlobalPropertiesDictionary.Count; 1348((IDictionary<string, ProjectPropertyInstance>)_data.GlobalPropertiesDictionary).ContainsKey(propertyElement.Name) && 2246_data.GlobalPropertiesDictionary,
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
95public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrappedData.GlobalPropertiesDictionary;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
144public PropertyDictionary<ProjectPropertyInstance> GlobalPropertiesDictionary => _wrapped.GlobalPropertiesDictionary;