1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 14:47:45 +08:00

Merge pull request #261 from WebFreak001/master

Better vscode launch config
This commit is contained in:
Dean Herbert 2016-12-19 11:45:02 +09:00 committed by GitHub
commit 7f9ad9adf0

16
.vscode/launch.json vendored
View File

@ -2,13 +2,25 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"name": "Launch VisualTests",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/osu.Desktop.VisualTests/bin/Debug/osu!.exe",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "",
"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",
"runtimeExecutable": null,
"env": {},
"externalConsole": false