6 implementations of GetProperty
Microsoft.Build (6)
BackEnd\Components\RequestBuilder\Lookup.cs (1)
451
public ProjectPropertyInstance
GetProperty
(string name)
Collections\PropertyDictionary.cs (1)
309
public T
GetProperty
(string name)
Definition\Project.cs (1)
4597
public ProjectProperty
GetProperty
(string name)
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
199
public P
GetProperty
(string name)
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (1)
61
public P
GetProperty
(string name)
Instance\ProjectInstance.cs (1)
1955
public ProjectPropertyInstance
GetProperty
(string name)
11 references to GetProperty
Microsoft.Build (11)
Evaluation\Evaluator.cs (6)
1585
var prop = _data.
GetProperty
(fallbackSearchPathMatch.PropertyName);
1757
var solutionPath = _data.
GetProperty
(SolutionProjectGenerator.SolutionPathPropertyName)?.EvaluatedValue;
1763
var projectPath = _data.
GetProperty
(ReservedPropertyNames.projectFullPath)?.EvaluatedValue;
2539
var extensionsPathProp = _data.
GetProperty
(searchPathMatch.PropertyName);
2629
P oldValue = _data.
GetProperty
(Constants.MSBuildAllProjectsPropertyName);
2655
P provideProperty = _data.
GetProperty
(Constants.MSBuildProvideImportedProjectsPropertyName);
Evaluation\Expander\WellKnownFunctions.cs (1)
954
string projectPath = properties.
GetProperty
("MSBuildProjectFullPath")?.EvaluatedValue ?? string.Empty;
Evaluation\LazyItemEvaluator.EvaluatorData.cs (1)
201
return _wrappedData.
GetProperty
(name);
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (3)
63
P prop = _wrapped.
GetProperty
(name);
99
P? originalProperty = _wrapped.
GetProperty
(name);
121
P? originalProperty = _wrapped.
GetProperty
(propertyElement.Name);