Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String)
7 references to GetProperty
Microsoft.Build (7)
Definition\ProjectCollection.cs (1)
1505ProjectPropertyInstance propertyInGlobalProperties = _globalProperties.GetProperty(name);
Definition\ToolsetReader.cs (1)
417initialPropertiesClone.GetProperty(p)?.EvaluatedValue);
Evaluation\Evaluator.cs (2)
267_isRunningInVisualStudio = string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 271_interactive = interactive || string.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase);
Graph\GraphBuilder.cs (1)
427if (globalPropertyDictionary.GetProperty(PropertyNames.IsGraphBuild) == null)
Instance\ProjectInstance.cs (2)
848var environmentProperty = that._environmentVariableProperties?.GetProperty(desiredProperty); 853var sdkResolvedEnvironmentProperty = that._sdkResolvedEnvironmentVariableProperties?.GetProperty(desiredProperty);