Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String)
8 references to GetProperty
Microsoft.Build (8)
Definition\ProjectCollection.cs (1)
1556ProjectPropertyInstance propertyInGlobalProperties = _globalProperties.GetProperty(name);
Definition\ToolsetReader.cs (1)
429initialPropertiesClone.GetProperty(p)?.EvaluatedValue);
Evaluation\Evaluator.cs (2)
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);
Graph\GraphBuilder.cs (1)
439if (globalPropertyDictionary.GetProperty(PropertyNames.IsGraphBuild) == null)
Instance\ProjectInstance.cs (3)
859var environmentProperty = that._environmentVariableProperties?.GetProperty(desiredProperty); 864var sdkResolvedEnvironmentProperty = that._sdkResolvedEnvironmentVariableProperties?.GetProperty(desiredProperty); 1489ProjectPropertyInstance existingProperty = propertyDictionary.GetProperty(name);