1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 03:02:56 +08:00

Merge pull request #2677 from Tom94/fix-vscode

Fix Debug mode instead of Release mode for mono debug target
This commit is contained in:
Dean Herbert 2018-05-29 19:32:20 +09:00 committed by GitHub
commit 165e5b8518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
.vscode/launch.json vendored
View File

@ -22,7 +22,7 @@
},
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/osu.Game.Tests/bin/Debug/net471/osu.Game.Tests.exe",
"program": "${workspaceRoot}/osu.Game.Tests/bin/Release/net471/osu.Game.Tests.exe",
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build (Release, msbuild)",
"runtimeExecutable": null,