4 references to ExtractEscapedValue
Microsoft.Build (4)
BackEnd\BuildManager\GlobalPropertiesLookup.cs (4)
34
.Select(p => new KeyValuePair<string, string?>(p.Key,
ExtractEscapedValue
(p.Value)))
46
value =
ExtractEscapedValue
(property);
54
public string? this[string key] =>
ExtractEscapedValue
(_backingProperties[key]);
57
public IEnumerable<string?> Values => _backingProperties.Values.Select(
ExtractEscapedValue
);