1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 19:22:56 +08:00

Merge pull request #2964 from johnneijzen/JSON-format-fix

Remove extra commas in vscode build configuration
This commit is contained in:
Dean Herbert 2018-07-06 13:20:38 +09:00 committed by GitHub
commit 7da5a2fec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
.vscode/launch.json vendored
View File

@ -41,7 +41,7 @@
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.1/osu!.dll",
"${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.1/osu!.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build osu! (Debug)",
@ -58,7 +58,7 @@
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.1/osu!.dll",
"${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.1/osu!.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build osu! (Release)",
@ -70,4 +70,4 @@
"console": "internalConsole"
}
]
}
}