6 implementations of GetProperty
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\Lookup.cs (1)
451public ProjectPropertyInstance GetProperty(string name)
Collections\PropertyDictionary.cs (1)
316public T GetProperty(string name)
Definition\Project.cs (1)
4469public ProjectProperty GetProperty(string name)
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
199public P GetProperty(string name)
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
61public P GetProperty(string name)
Instance\ProjectInstance.cs (1)
2006public ProjectPropertyInstance GetProperty(string name)
12 references to GetProperty
Microsoft.Build (12)
Evaluation\Evaluator.cs (7)
1651var prop = _data.GetProperty(fallbackSearchPathMatch.PropertyName); 1823var solutionPath = _data.GetProperty(SolutionProjectGenerator.SolutionPathPropertyName)?.EvaluatedValue; 1829var projectPath = _data.GetProperty(ReservedPropertyNames.projectFullPath)?.EvaluatedValue; 2610var extensionsPathProp = _data.GetProperty(searchPathMatch.PropertyName); 2700P oldValue = _data.GetProperty(Constants.MSBuildAllProjectsPropertyName); 2726P provideProperty = _data.GetProperty(Constants.MSBuildProvideImportedProjectsPropertyName); 2769P provideProperty = _data.GetProperty(Constants.MSBuildProvideItemGlobsPropertyName);
Evaluation\Expander\WellKnownFunctions.cs (1)
951string projectPath = properties.GetProperty("MSBuildProjectFullPath")?.EvaluatedValue ?? string.Empty;
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
201return _wrappedData.GetProperty(name);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (3)
63P prop = _wrapped.GetProperty(name); 99P? originalProperty = _wrapped.GetProperty(name); 121P? originalProperty = _wrapped.GetProperty(propertyElement.Name);