2 implementations of EvaluatedValue
Microsoft.Build (2)
Definition\ProjectProperty.cs (1)
85
public string
EvaluatedValue
Instance\ProjectPropertyInstance.cs (1)
65
public string
EvaluatedValue
13 references to EvaluatedValue
Microsoft.Build (13)
Evaluation\Evaluator.cs (8)
1654
pathsToSearch[0] = prop?.
EvaluatedValue
; // The actual value of the property, with no fallbacks
1823
var solutionPath = _data.GetProperty(SolutionProjectGenerator.SolutionPathPropertyName)?.
EvaluatedValue
;
1829
var projectPath = _data.GetProperty(ReservedPropertyNames.projectFullPath)?.
EvaluatedValue
;
2616
string extensionsPathPropValue = extensionsPathProp.
EvaluatedValue
;
2706
: $"{_lastModifiedProject.FullPath}{streamImports};{oldValue.
EvaluatedValue
}",
2727
if (provideProperty is null || !string.Equals(provideProperty.
EvaluatedValue
, "true", StringComparison.OrdinalIgnoreCase))
2770
if (provideProperty is null || string.IsNullOrWhiteSpace(provideProperty.
EvaluatedValue
))
2776
ExpressionShredder.SplitSemiColonSeparatedList(provideProperty.
EvaluatedValue
),
Evaluation\Expander\WellKnownFunctions.cs (1)
951
string projectPath = properties.GetProperty("MSBuildProjectFullPath")?.
EvaluatedValue
?? string.Empty;
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (3)
307
property.
EvaluatedValue
,
335
string newValue = property.
EvaluatedValue
;
336
string? oldValue = predecessor?.
EvaluatedValue
;
Utilities\Utilities.cs (1)
708
yield return new(property.Name, property.
EvaluatedValue
?? string.Empty);