6 implementations of GetProperty
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\Lookup.cs (1)
453
public ProjectPropertyInstance
GetProperty
(string name)
Collections\PropertyDictionary.cs (1)
304
public T
GetProperty
(string name)
Definition\Project.cs (1)
4561
public ProjectProperty
GetProperty
(string name)
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
279
public P
GetProperty
(string name)
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
61
public P
GetProperty
(string name)
Instance\ProjectInstance.cs (1)
1862
public ProjectPropertyInstance
GetProperty
(string name)
10 references to GetProperty
Microsoft.Build (10)
Evaluation\Evaluator.cs (5)
1553
var prop = _data.
GetProperty
(fallbackSearchPathMatch.PropertyName);
1725
var solutionPath = _data.
GetProperty
(SolutionProjectGenerator.SolutionPathPropertyName)?.EvaluatedValue;
1731
var projectPath = _data.
GetProperty
(ReservedPropertyNames.projectFullPath)?.EvaluatedValue;
2475
var extensionsPathProp = _data.
GetProperty
(searchPathMatch.PropertyName);
2565
P oldValue = _data.
GetProperty
(Constants.MSBuildAllProjectsPropertyName);
Evaluation\Expander.cs (1)
3692
string projectPath = properties.
GetProperty
("MSBuildProjectFullPath")?.EvaluatedValue ?? string.Empty;
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
281
return _wrappedData.
GetProperty
(name);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (3)
63
P prop = _wrapped.
GetProperty
(name);
92
P? originalProperty = _wrapped.
GetProperty
(name);
114
P? originalProperty = _wrapped.
GetProperty
(propertyElement.Name);