Skip to content

Commit 6f42624

Browse files
authored
Fix for handling comments
1 parent 9265587 commit 6f42624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/Setting.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public string StringValueTrimmed
7272
/// </summary>
7373
public string StringValue
7474
{
75-
get => GetValue<string>().Trim('\"');
76-
set => SetValue(value.Trim('\"'));
75+
get => Configuration.OutputRawStringValues ? GetValue<string>() : GetValue<string>().Trim('\"');
76+
set => SetValue(Configuration.OutputRawStringValues ? value : value.Trim('\"'));
7777
}
7878

7979
/// <summary>

0 commit comments

Comments
 (0)