Command Line arguments for launchSettings.Json

Hi everyone!

I had worked very hard in my Rhino 7 development to make a smooth process for debugging and testing by using start arguments to open a specific rhino file and grasshopper script when I built my project. Bellow is the sample from my old .csproj file.

	  <StartProgram>C:\Program Files\Rhino 7\System\Rhino.exe</StartProgram>
	  <StartArguments>
		 Rhino.exe
         /nosplash /runscript="-_open
         ""C:/My/Rhino/file.3dm""
         -grasshopper solver enable document open ""C:/My/Grasshopper/File.ghx"" _enter"
	  </StartArguments>
	  <StartAction>Program</StartAction>
  </PropertyGroup>

I am not sure how to update this appropriately to work with the .json. I’ve had issues regarding escapement from the double quotes for the file names. Is there anyone who can help me update this? Thanks in advance!