Haru/.vscode/launch.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2021-12-28 23:14:28 +01:00
{
"version": "0.2.0",
"configurations": [
{
2021-12-29 14:19:01 +01:00
"name": "Launcher",
"type": "coreclr",
2021-12-28 23:14:28 +01:00
"request": "launch",
2021-12-29 14:19:01 +01:00
"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",
}
},
{
2021-12-28 23:14:28 +01:00
"name": "Server",
2021-12-29 14:19:01 +01:00
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"preLaunchTask": "build: server",
"console": "externalTerminal",
2021-12-28 23:14:28 +01:00
"runtimeExecutable": "npm",
"runtimeArgs": [
"--prefix",
"Server",
"run-script",
"debug"
]
}
]
}