mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 17:33:22 +08:00
Merge pull request #1354 from Tom94/vscode-build
Improve VSCode build / debug tasks
This commit is contained in:
commit
6a91175c0f
23
.vscode/launch.json
vendored
23
.vscode/launch.json
vendored
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [{
|
"configurations": [{
|
||||||
"name": "osu! (VisualTests)",
|
"name": "osu! VisualTests (Debug)",
|
||||||
"windows": {
|
"windows": {
|
||||||
"type": "clr"
|
"type": "clr"
|
||||||
},
|
},
|
||||||
@ -18,7 +18,24 @@
|
|||||||
"console": "internalConsole"
|
"console": "internalConsole"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "osu! (debug)",
|
"name": "osu! VisualTests (Release)",
|
||||||
|
"windows": {
|
||||||
|
"type": "clr"
|
||||||
|
},
|
||||||
|
"type": "mono",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceRoot}/osu.Game/bin/Release/osu!.exe",
|
||||||
|
"args": [
|
||||||
|
"--tests"
|
||||||
|
],
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"preLaunchTask": "Build (Release)",
|
||||||
|
"runtimeExecutable": null,
|
||||||
|
"env": {},
|
||||||
|
"console": "internalConsole"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "osu! (Debug)",
|
||||||
"windows": {
|
"windows": {
|
||||||
"type": "clr"
|
"type": "clr"
|
||||||
},
|
},
|
||||||
@ -32,7 +49,7 @@
|
|||||||
"console": "internalConsole"
|
"console": "internalConsole"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "osu! (release)",
|
"name": "osu! (Release)",
|
||||||
"windows": {
|
"windows": {
|
||||||
"type": "clr"
|
"type": "clr"
|
||||||
},
|
},
|
||||||
|
1
.vscode/tasks.json
vendored
1
.vscode/tasks.json
vendored
@ -23,6 +23,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"taskName": "Build (Release)",
|
"taskName": "Build (Release)",
|
||||||
|
"group": "build",
|
||||||
"args": [
|
"args": [
|
||||||
"/property:Configuration=Release"
|
"/property:Configuration=Release"
|
||||||
],
|
],
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit ef889b4ec7e6175d52d64411c15f4f195fd16209
|
Subproject commit 07e84f60b0d2ee443f366cb2e34bf25b680983dd
|
Loading…
Reference in New Issue
Block a user