Hi
We have upgraded a solution from v9.6.9 to v9.13.6. Now when running a Razor template (a master.cshtml file) GetString and quotes does not get processed correctly. The first problem (first image) is that GetString() set in between sinlge quotes result in a compilation error. The second problem is that GetString() doesn't get processed correctly resulting in wrong values entered in the template. When Razor processes this code:
<img src="@GetString("Item.Area.APK_Icon")" alt="APK icon" class="img-fluid">
the result is this:
<img src=""="" alt="APK icon" class="img-fluid">
And when adding a space after and before the first and last double quotes:
<img src=" @GetString("Item.Area.APK_Icon") " alt="APK icon" class="img-fluid">
the result is this:
<img src="/Files/Templates/Designs/TWG/%20@GetString(" item.area.apk_icon")="" alt="APK icon" class="img-fluid">
This you can see this in the second image