2 implementations of EvaluatedValueEscaped
Microsoft.Build (2)
Definition\ProjectProperty.cs (1)
101
string IProperty.
EvaluatedValueEscaped
Instance\ProjectPropertyInstance.cs (1)
98
string IProperty.
EvaluatedValueEscaped
21 references to EvaluatedValueEscaped
Microsoft.Build (21)
BackEnd\BuildManager\BuildParameters.cs (2)
453
instance => ((IProperty)instance).
EvaluatedValueEscaped
);
488
instance => ((IProperty)instance).
EvaluatedValueEscaped
);
BackEnd\Components\RequestBuilder\Lookup.cs (1)
229
lookupHash[propertyName] = ((IProperty)property).
EvaluatedValueEscaped
;
BackEnd\Shared\BuildRequestConfiguration.cs (2)
407
_project.SetProperty(property.Name, ((IProperty)property).
EvaluatedValueEscaped
);
468
globalProperties.Add(property.Name, ((IProperty)property).
EvaluatedValueEscaped
);
Construction\Solution\SolutionProjectGenerator.cs (1)
2092
properties[globalProperty.Name] = ((IProperty)globalProperty).
EvaluatedValueEscaped
;
Definition\Project.cs (5)
1120
return ((IProperty)property).
EvaluatedValueEscaped
;
2134
yield return new KeyValuePair<string, string>(property.Name, ((IProperty)property).
EvaluatedValueEscaped
);
2161
dictionary[property.Name] = ((IProperty)property).
EvaluatedValueEscaped
;
2985
if (existing == null || ((IProperty)existing).
EvaluatedValueEscaped
!= escapedValue)
2987
string originalValue = (existing == null) ? String.Empty : ((IProperty)existing).
EvaluatedValueEscaped
;
Definition\ProjectCollection.cs (1)
605
dictionary[property.Name] = ((IProperty)property).
EvaluatedValueEscaped
;
Definition\ProjectProperty.cs (1)
586
return ((IProperty)this).
EvaluatedValueEscaped
;
Evaluation\Evaluator.cs (5)
1212
_data.SetProperty(environmentProperty.Name, ((IProperty)environmentProperty).
EvaluatedValueEscaped
, isGlobalProperty: false, mayBeReserved: false, isEnvironmentVariable: true, loggingContext: _evaluationLoggingContext);
1223
_data.SetProperty(toolsetProperty.Name, ((IProperty)toolsetProperty).
EvaluatedValueEscaped
, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext);
1249
_data.SetProperty(subToolsetProperty.Name, ((IProperty)subToolsetProperty).
EvaluatedValueEscaped
, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext);
1269
((IProperty)globalProperty).
EvaluatedValueEscaped
,
2198
instance => ((IProperty)instance).
EvaluatedValueEscaped
),
Instance\ProjectInstance.cs (3)
1740
return ((IProperty)property).
EvaluatedValueEscaped
;
2634
globalProperties[propertyInstance.Name] = ((IProperty)propertyInstance).
EvaluatedValueEscaped
;
3143
((IProperty)property).
EvaluatedValueEscaped
,