We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 41b399b + 6f42624 commit cb7e14dCopy full SHA for cb7e14d
Src/Setting.cs
@@ -72,8 +72,8 @@ public string StringValueTrimmed
72
/// </summary>
73
public string StringValue
74
{
75
- get => GetValue<string>().Trim('\"');
76
- set => SetValue(value.Trim('\"'));
+ get => Configuration.OutputRawStringValues ? GetValue<string>() : GetValue<string>().Trim('\"');
+ set => SetValue(Configuration.OutputRawStringValues ? value : value.Trim('\"'));
77
}
78
79
/// <summary>
0 commit comments