1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 12:07:27 +08:00
osu-lazer/.vscode/launch.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2016-10-14 22:11:41 +08:00
{
"version": "0.2.0",
"configurations": [
{
2016-12-19 07:00:32 +08:00
"name": "Launch VisualTests",
"windows": {
"type": "clr"
},
2016-10-14 22:11:41 +08:00
"type": "mono",
"request": "launch",
2016-11-11 06:40:42 +08:00
"program": "${workspaceRoot}/osu.Desktop.VisualTests/bin/Debug/osu!.exe",
2016-10-14 22:11:41 +08:00
"args": [],
"cwd": "${workspaceRoot}",
2016-12-19 07:00:32 +08:00
"preLaunchTask": "build",
"runtimeExecutable": null,
"env": {},
"console": "internalConsole"
2016-12-19 07:00:32 +08:00
},
{
"name": "Launch Desktop",
"windows": {
"type": "clr"
},
2016-12-19 07:00:32 +08:00
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/osu.Desktop/bin/Debug/osu!.exe",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "build",
2016-10-14 22:11:41 +08:00
"runtimeExecutable": null,
"env": {},
"console": "internalConsole"
2016-10-14 22:11:41 +08:00
},
{
"name": "Attach",
2017-04-22 15:18:00 +08:00
"windows": {
"type": "clr",
"request": "attach",
"processName": "osu!"
},
2016-10-14 22:11:41 +08:00
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}