Adds a vscode launch option for starting the client in the compatibility renderer (#22904)

adds a vscode launch option to start the client with the compatibility renderer
This commit is contained in:
deathride58
2023-12-23 22:42:14 -05:00
committed by GitHub
parent 5d0624bd34
commit 30ff5fde69

9
.vscode/launch.json vendored
View File

@@ -13,6 +13,15 @@
"console": "internalConsole", "console": "internalConsole",
"stopAtEntry": false "stopAtEntry": false
}, },
{
"name": "Client (Compatibility renderer)",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/bin/Content.Client/Content.Client.dll",
"args": "--cvar display.compat=true",
"console": "internalConsole",
"stopAtEntry": false
},
{ {
"name": "Server", "name": "Server",
"type": "coreclr", "type": "coreclr",