osu/.vscode/launch.json

36 lines
1.0 KiB
JSON
Raw Normal View History

2016-10-14 14:11:41 +00:00
{
"version": "0.2.0",
"configurations": [
{
2016-12-18 23:00:32 +00:00
"name": "Launch VisualTests",
2016-10-14 14:11:41 +00:00
"type": "mono",
"request": "launch",
2016-11-10 22:40:42 +00:00
"program": "${workspaceRoot}/osu.Desktop.VisualTests/bin/Debug/osu!.exe",
2016-10-14 14:11:41 +00:00
"args": [],
"cwd": "${workspaceRoot}",
2016-12-18 23:00:32 +00: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 14:11:41 +00:00
"runtimeExecutable": null,
"env": {},
"externalConsole": false
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}