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)
427instance => ((IProperty)instance).EvaluatedValueEscaped); 462instance => ((IProperty)instance).EvaluatedValueEscaped);
BackEnd\Components\RequestBuilder\Lookup.cs (1)
227lookupHash[propertyName] = ((IProperty)property).EvaluatedValueEscaped;
BackEnd\Shared\BuildRequestConfiguration.cs (2)
397_project.SetProperty(property.Name, ((IProperty)property).EvaluatedValueEscaped); 458globalProperties.Add(property.Name, ((IProperty)property).EvaluatedValueEscaped);
Construction\Solution\SolutionProjectGenerator.cs (1)
2079properties[globalProperty.Name] = ((IProperty)globalProperty).EvaluatedValueEscaped;
Definition\Project.cs (5)
1114return ((IProperty)property).EvaluatedValueEscaped; 2128yield return new KeyValuePair<string, string>(property.Name, ((IProperty)property).EvaluatedValueEscaped); 2155dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped; 2965if (existing == null || ((IProperty)existing).EvaluatedValueEscaped != escapedValue) 2967string originalValue = (existing == null) ? String.Empty : ((IProperty)existing).EvaluatedValueEscaped;
Definition\ProjectCollection.cs (1)
573dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped;
Definition\ProjectProperty.cs (1)
586return ((IProperty)this).EvaluatedValueEscaped;
Evaluation\Evaluator.cs (5)
1199_data.SetProperty(environmentProperty.Name, ((IProperty)environmentProperty).EvaluatedValueEscaped, isGlobalProperty: false, mayBeReserved: false, isEnvironmentVariable: true, loggingContext: _evaluationLoggingContext); 1210_data.SetProperty(toolsetProperty.Name, ((IProperty)toolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1236_data.SetProperty(subToolsetProperty.Name, ((IProperty)subToolsetProperty).EvaluatedValueEscaped, false /* NOT global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 1254_data.SetProperty(globalProperty.Name, ((IProperty)globalProperty).EvaluatedValueEscaped, true /* IS global property */, false /* may NOT be a reserved name */, loggingContext: _evaluationLoggingContext); 2147instance => ((IProperty)instance).EvaluatedValueEscaped),
Instance\ProjectInstance.cs (4)
1084dictionary[property.Name] = ((IProperty)property).EvaluatedValueEscaped; 1666return ((IProperty)property).EvaluatedValueEscaped; 2551globalProperties[propertyInstance.Name] = ((IProperty)propertyInstance).EvaluatedValueEscaped; 3050((IProperty)property).EvaluatedValueEscaped,