6 implementations of GetProperty
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\Lookup.cs (1)
415public ProjectPropertyInstance GetProperty(string name, int startIndex, int endIndex)
Collections\PropertyDictionary.cs (1)
314public T GetProperty(string name, int startIndex, int endIndex)
Definition\Project.cs (1)
4570public ProjectProperty GetProperty(string name, int startIndex, int endIndex)
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
284public P GetProperty(string name, int startIndex, int endIndex)
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
76public P GetProperty(string name, int startIndex, int endIndex)
Instance\ProjectInstance.cs (1)
1873ProjectPropertyInstance IPropertyProvider<ProjectPropertyInstance>.GetProperty(string name, int startIndex, int endIndex)
3 references to GetProperty
Microsoft.Build (3)
Evaluation\Expander.cs (1)
1553T property = properties.GetProperty(propertyName, startIndex, endIndex);
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
286return _wrappedData.GetProperty(name, startIndex, endIndex);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
78P prop = _wrapped.GetProperty(name, startIndex, endIndex);