I Currently have created an ASP.NET Empty website on VB.NET with nothing but a few pages and a WebConfig file. On one page I have an SQL String on multiple lines and I am getting the Error:
BC30648: String constants must end with a double quote.
I know if I install the Roslyn folder it will solve this problem:
install-package Microsoft.CodeDom.Providers.DotNetCompilerPlatform
install-package Microsoft.Net.Compilers
However, if I install this it will not work on my current hosting on 1&1 IONOS or localhost IIS; I believe this is because the server thinks it is a web Application and I am looking a website.
Is there a way to have Multi-line strings without the Microsoft.CodeDom.Providers.DotNetCompilerPlatform ?