Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String)
8 references to GetProperty
Microsoft.Build (8)
Definition\ProjectCollection.cs (1)
1442ProjectPropertyInstance propertyInGlobalProperties = _globalProperties.GetProperty(name);
Definition\ToolsetReader.cs (3)
424string frameworksPathPrefix32 = existingRootOrNull(initialPropertiesClone.GetProperty("MSBuildFrameworkToolsPath32")?.EvaluatedValue?.Trim()); 427string frameworksPathPrefix64 = existingRootOrNull(initialPropertiesClone.GetProperty("MSBuildFrameworkToolsPath64")?.EvaluatedValue?.Trim()); 430string frameworksPathPrefixArm64 = existingRootOrNull(initialPropertiesClone.GetProperty("MSBuildFrameworkToolsPathArm64")?.EvaluatedValue?.Trim());
Evaluation\Evaluator.cs (2)
266_isRunningInVisualStudio = String.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("BuildingInsideVisualStudio")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase); 270_interactive = interactive || String.Equals("true", _data.GlobalPropertiesDictionary.GetProperty("NuGetInteractive")?.EvaluatedValue, StringComparison.OrdinalIgnoreCase);
Graph\GraphBuilder.cs (1)
427if (globalPropertyDictionary.GetProperty(PropertyNames.IsGraphBuild) == null)
Utilities\Utilities.cs (1)
532ProjectPropertyInstance localAppDataProp = environmentProperties.GetProperty(ReservedPropertyNames.localAppData);