1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:47:23 +08:00
osu-lazer/.vscode/launch.json

36 lines
1.0 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",
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": {},
"externalConsole": false
},
{
"name": "Launch Desktop",
"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": {},
"externalConsole": false
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}