ExtinctionOnline/.vscode/launch.json

28 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2022-11-04 22:05:08 +09:00
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
2022-11-04 22:05:08 +09:00
"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",
2022-11-04 22:05:08 +09:00
"url": "http://localhost:5500",
"webRoot": "${workspaceFolder}",
"sourceMaps": true
2022-11-04 22:05:08 +09:00
}
]
}