Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String)
8 references to GetProperty
Microsoft.Build (8)
Definition\ProjectCollection.cs (1)
1506
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)
428
if (globalPropertyDictionary.
GetProperty
(PropertyNames.IsGraphBuild) == null)
Instance\ProjectInstance.cs (3)
849
var environmentProperty = that._environmentVariableProperties?.
GetProperty
(desiredProperty);
854
var sdkResolvedEnvironmentProperty = that._sdkResolvedEnvironmentVariableProperties?.
GetProperty
(desiredProperty);
1423
ProjectPropertyInstance existingProperty = propertyDictionary.
GetProperty
(name);