26 lines
954 B
JSON
Raw 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"
},
{
2025-08-31 18:27:04 +09:00
"type": "firefox",
"request": "launch",
"name": "Launch ExtinctionOnlineClient",
2022-11-04 22:05:08 +09:00
"url": "http://localhost:5500",
2025-08-31 18:27:04 +09:00
"webRoot": "${workspaceFolder}"
2022-11-04 22:05:08 +09:00
}
]
}