1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:47:26 +08:00
osu-lazer/.vscode/launch.json

157 lines
5.6 KiB
JSON
Raw Normal View History

2016-10-14 22:11:41 +08:00
{
"version": "0.2.0",
2019-06-21 14:00:48 +08:00
"configurations": [{
"name": "osu! (Debug)",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.2/osu!.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build osu! (Debug)",
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
},
"console": "internalConsole"
},
{
"name": "osu! (Release)",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.2/osu!.dll"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build osu! (Release)",
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
},
"console": "internalConsole"
},
{
2019-06-21 14:00:48 +08:00
"name": "osu! (Tests, Debug)",
"type": "coreclr",
2016-12-19 07:00:32 +08:00
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Game.Tests/bin/Debug/netcoreapp2.2/osu.Game.Tests.dll"
],
2016-12-19 07:00:32 +08:00
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build tests (Debug)",
2018-06-23 22:37:58 +08:00
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Game.Tests/bin/Debug/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
2018-06-23 22:37:58 +08:00
},
"console": "internalConsole"
2019-06-21 14:00:48 +08:00
}, {
"name": "osu! (Tests, Release)",
2017-11-19 16:24:32 +08:00
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Game.Tests/bin/Release/netcoreapp2.2/osu.Game.Tests.dll"
],
2017-11-19 16:24:32 +08:00
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build tests (Release)",
2018-06-23 22:37:58 +08:00
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Game.Tests/bin/Release/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
2018-06-23 22:37:58 +08:00
},
2017-11-19 16:24:32 +08:00
"console": "internalConsole"
},
{
2019-06-21 14:00:48 +08:00
"name": "Tournament (Debug)",
"type": "coreclr",
2017-11-19 16:24:32 +08:00
"request": "launch",
"program": "dotnet",
"args": [
2019-06-21 14:00:48 +08:00
"${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.2/osu!.dll",
"--tournament"
],
2017-11-19 16:24:32 +08:00
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build osu! (Debug)",
2018-06-23 22:37:58 +08:00
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
2018-06-23 22:37:58 +08:00
},
2017-11-19 16:24:32 +08:00
"console": "internalConsole"
},
{
2019-06-21 14:00:48 +08:00
"name": "Tournament (Release)",
2017-11-19 16:24:32 +08:00
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
2019-06-21 14:00:48 +08:00
"${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.2/osu!.dll",
"--tournament"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build osu! (Release)",
2018-06-23 22:37:58 +08:00
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
2018-06-23 22:37:58 +08:00
},
"console": "internalConsole"
2019-02-16 06:47:22 +08:00
},
2019-06-21 14:00:48 +08:00
{
"name": "Tournament (Tests, Debug)",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Game.Tournament.Tests/bin/Debug/netcoreapp2.2/osu.Game.Tournament.Tests.dll",
"--tournament"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build tournament tests (Debug)",
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Game.Tournament.Tests/bin/Debug/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
},
"console": "internalConsole"
},
{
"name": "Tournament (Tests, Release)",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"${workspaceRoot}/osu.Game.Tournament.Tests/bin/Debug/netcoreapp2.2/osu.Game.Tournament.Tests.dll",
"--tournament"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build tournament tests (Release)",
"linux": {
"env": {
"LD_LIBRARY_PATH": "${workspaceRoot}/osu.Game.Tournament.Tests/bin/Debug/netcoreapp2.2:${env:LD_LIBRARY_PATH}"
}
},
"console": "internalConsole"
},
2019-02-16 06:47:22 +08:00
{
"name": "Cake: Debug Script",
"type": "coreclr",
"request": "launch",
"program": "${workspaceRoot}/build/tools/Cake.CoreCLR/0.30.0/Cake.dll",
"args": [
"${workspaceRoot}/build/build.cake",
"--debug",
"--verbosity=diagnostic"
],
"cwd": "${workspaceRoot}/build",
"stopAtEntry": true,
"externalConsole": false
2016-10-14 22:11:41 +08:00
}
]
2019-06-21 14:00:48 +08:00
}