From 6f42624d1faaff3454099445bdc85de0db063b56 Mon Sep 17 00:00:00 2001 From: rboy1 <3846367+rboy1@users.noreply.github.com> Date: Wed, 1 Oct 2025 16:55:18 -0400 Subject: [PATCH] Fix for handling comments --- Src/Setting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Setting.cs b/Src/Setting.cs index 035065b..796e76e 100644 --- a/Src/Setting.cs +++ b/Src/Setting.cs @@ -72,8 +72,8 @@ public string StringValueTrimmed /// public string StringValue { - get => GetValue().Trim('\"'); - set => SetValue(value.Trim('\"')); + get => Configuration.OutputRawStringValues ? GetValue() : GetValue().Trim('\"'); + set => SetValue(Configuration.OutputRawStringValues ? value : value.Trim('\"')); } ///