osu/.vscode/launch.json

49 lines
1.4 KiB
JSON
Raw Normal View History

2016-10-14 14:11:41 +00:00
{
"version": "0.2.0",
2017-08-04 07:45:09 +00:00
"configurations": [{
"name": "osu! (VisualTests)",
"windows": {
"type": "clr"
},
2016-10-14 14:11:41 +00:00
"type": "mono",
"request": "launch",
2017-09-19 02:29:23 +00:00
"program": "${workspaceRoot}/osu.Game/bin/Debug/osu!.exe",
2017-08-04 07:45:09 +00:00
"args": [
"--tests"
],
2016-10-14 14:11:41 +00:00
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build (Debug)",
2016-12-18 23:00:32 +00:00
"runtimeExecutable": null,
"env": {},
"console": "internalConsole"
},
{
"name": "osu! (debug)",
"windows": {
"type": "clr"
},
2016-12-18 23:00:32 +00:00
"type": "mono",
"request": "launch",
2017-09-19 02:29:23 +00:00
"program": "${workspaceRoot}/osu.Game/bin/Debug/osu!.exe",
2016-12-18 23:00:32 +00:00
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build (Debug)",
2016-10-14 14:11:41 +00:00
"runtimeExecutable": null,
"env": {},
"console": "internalConsole"
2016-10-14 14:11:41 +00:00
},
{
"name": "osu! (release)",
2017-04-22 07:18:00 +00:00
"windows": {
"type": "clr"
2017-04-22 07:18:00 +00:00
},
2016-10-14 14:11:41 +00:00
"type": "mono",
"request": "launch",
2017-09-19 02:29:23 +00:00
"program": "${workspaceRoot}/osu.Game/bin/Release/osu!.exe",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build (Release)",
"runtimeExecutable": null,
"env": {},
"console": "internalConsole"
2016-10-14 14:11:41 +00:00
}
]
}