{ "version": "0.2.0", "configurations": [ { "name": "Launcher", "type": "coreclr", "request": "launch", "cwd": "${workspaceFolder}", "console": "externalTerminal", "preLaunchTask": "build: launcher", "program": "", "linux": { "program": "${workspaceFolder}/Launcher/bin/Debug/net6.0/linux-x64/Launcher.dll", }, "osx": { "program": "${workspaceFolder}/Launcher/bin/Debug/net6.0/osx-x64/Launcher.dll", }, "windows": { "program": "${workspaceFolder}/Launcher/bin/Debug/net6.0/win-x64/Launcher.dll", } }, { "name": "Server", "type": "node", "request": "launch", "cwd": "${workspaceFolder}", "preLaunchTask": "build: server", "console": "externalTerminal", "runtimeExecutable": "npm", "runtimeArgs": [ "--prefix", "Server", "run-script", "debug" ] } ] }