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

49 lines
1.4 KiB
JSON
Raw Normal View History

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