Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String)
7 references to GetProperty
Microsoft.Build (7)
Definition\ProjectCollection.cs (1)
1505
ProjectPropertyInstance propertyInGlobalProperties = _globalProperties.
GetProperty
(name);
Definition\ToolsetReader.cs (1)
417
initialPropertiesClone.
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)
427
if (globalPropertyDictionary.
GetProperty
(PropertyNames.IsGraphBuild) == null)
Instance\ProjectInstance.cs (2)
848
var environmentProperty = that._environmentVariableProperties?.
GetProperty
(desiredProperty);
853
var sdkResolvedEnvironmentProperty = that._sdkResolvedEnvironmentVariableProperties?.
GetProperty
(desiredProperty);