ExtinctionOnline/.vscode/launch.json

28 lines
1.0 KiB
JSON

{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/ExtinctionOnline.Server/bin/Debug/net6.0/ExtinctionOnline.Server.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "externalTerminal"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch ExtinctionOnlineClient",
"runtimeExecutable": "/usr/bin/brave",
"url": "http://localhost:5500",
"webRoot": "${workspaceFolder}",
"sourceMaps": true
}
]
}