2 implementations of EvaluatedValueEscaped
Microsoft.Build (2)
Definition\ProjectProperty.cs (1)
101string IProperty.EvaluatedValueEscaped
Instance\ProjectPropertyInstance.cs (1)
98string IProperty.EvaluatedValueEscaped
22 references to EvaluatedValueEscaped
Microsoft.Build (22)
BackEnd\BuildManager\BuildParameters.cs (2)
439instance => ((IProperty)instance).EvaluatedValueEscaped); 474instance => ((IProperty)instance).EvaluatedValueEscaped);
BackEnd\Components\RequestBuilder\Lookup.cs (1)
226lookupHash[propertyName] = ((IProperty)property).EvaluatedValueEscaped;
BackEnd\Shared\BuildRequestConfiguration.cs (2)
401_project.SetProperty(property.Name, ((IProperty)property).EvaluatedValueEscaped); 462globalProperties.Add(property.Name, ((IProperty)property).EvaluatedValueEscaped);
Construction\Solution\SolutionProjectGenerator.cs (1)
2092properties[globalProperty.Name] = ((IProperty)globalProperty).EvaluatedValueEscaped;
Definition\Project.cs (5)
1120return ((IProperty)property).EvaluatedValueEscaped; 2134yield return new KeyValuePair<string, string>(property.Name, ((IProperty)property).EvaluatedValueEscaped); 2161dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped; 2971if (existing == null || ((IProperty)existing).EvaluatedValueEscaped != escapedValue) 2973string originalValue = (existing == null) ? String.Empty : ((IProperty)existing).EvaluatedValueEscaped;
Definition\ProjectCollection.cs (1)
578dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped;
Definition\ProjectProperty.cs (1)
586return ((IProperty)this).EvaluatedValueEscaped;
Evaluation\Evaluator.cs (5)
1207_data.SetProperty(environmentProperty.Name, ((IProperty)environmentProperty).EvaluatedValueEscaped, isGlobalProperty: false, mayBeReserved: false, isEnvironmentVariable: true, loggingContext: _evaluationLoggingContext); 1218_data.SetProperty(toolsetProperty.Name, ((IProperty)toolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1244_data.SetProperty(subToolsetProperty.Name, ((IProperty)subToolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1264((IProperty)globalProperty).EvaluatedValueEscaped, 2164instance => ((IProperty)instance).EvaluatedValueEscaped),
Instance\ProjectInstance.cs (4)
1084dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped; 1666return ((IProperty)property).EvaluatedValueEscaped; 2551globalProperties[propertyInstance.Name] = ((IProperty)propertyInstance).EvaluatedValueEscaped; 3055((IProperty)property).EvaluatedValueEscaped,