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

24 lines
623 B
JSON
Raw Normal View History

2016-10-14 22:11:41 +08:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"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}",
"preLaunchTask": "",
"runtimeExecutable": null,
"env": {},
"externalConsole": false
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}