Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String)
5 references to GetProperty
Microsoft.Build (5)
Definition\ProjectCollection.cs (1)
1444ProjectPropertyInstance propertyInGlobalProperties = _globalProperties.GetProperty(name);
Definition\ToolsetReader.cs (1)
423initialPropertiesClone.GetProperty(p)?.EvaluatedValue);
Evaluation\Evaluator.cs (2)
261_isRunningInVisualStudio = String.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 265_interactive = interactive || String.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase);
Graph\GraphBuilder.cs (1)
427if (globalPropertyDictionary.GetProperty(PropertyNames.IsGraphBuild) == null)