2016-10-14 22:11:41 +08:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
2020-01-08 21:31:58 +08:00
|
|
|
"configurations": [
|
|
|
|
{
|
2019-06-21 14:00:48 +08:00
|
|
|
"name": "osu! (Debug)",
|
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Desktop/bin/Debug/net5.0/osu!.dll"
|
2019-06-21 14:00:48 +08:00
|
|
|
],
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"preLaunchTask": "Build osu! (Debug)",
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "osu! (Release)",
|
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Desktop/bin/Release/net5.0/osu!.dll"
|
2019-06-21 14:00:48 +08:00
|
|
|
],
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"preLaunchTask": "Build osu! (Release)",
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
2018-03-26 09:52:54 +08:00
|
|
|
{
|
2019-06-21 14:00:48 +08:00
|
|
|
"name": "osu! (Tests, Debug)",
|
2018-03-26 09:52:54 +08:00
|
|
|
"type": "coreclr",
|
2016-12-19 07:00:32 +08:00
|
|
|
"request": "launch",
|
2018-03-26 09:52:54 +08:00
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Game.Tests/bin/Debug/net5.0/osu.Game.Tests.dll"
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2016-12-19 07:00:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-06-07 14:02:54 +08:00
|
|
|
"preLaunchTask": "Build tests (Debug)",
|
2017-04-09 17:59:43 +08:00
|
|
|
"console": "internalConsole"
|
2020-01-08 21:31:58 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-21 14:00:48 +08:00
|
|
|
"name": "osu! (Tests, Release)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"type": "coreclr",
|
2018-03-26 09:52:54 +08:00
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Game.Tests/bin/Release/net5.0/osu.Game.Tests.dll"
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2017-11-19 16:24:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-06-07 14:02:54 +08:00
|
|
|
"preLaunchTask": "Build tests (Release)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2019-06-21 14:00:48 +08:00
|
|
|
"name": "Tournament (Debug)",
|
2018-03-26 09:52:54 +08:00
|
|
|
"type": "coreclr",
|
2017-11-19 16:24:32 +08:00
|
|
|
"request": "launch",
|
2018-03-26 09:52:54 +08:00
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Desktop/bin/Debug/net5.0/osu!.dll",
|
2019-06-21 14:00:48 +08:00
|
|
|
"--tournament"
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2017-11-19 16:24:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-06-07 14:02:54 +08:00
|
|
|
"preLaunchTask": "Build osu! (Debug)",
|
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",
|
2018-03-26 09:52:54 +08:00
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Desktop/bin/Release/net5.0/osu!.dll",
|
2019-06-21 14:00:48 +08:00
|
|
|
"--tournament"
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2017-04-26 13:25:46 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-06-07 14:02:54 +08:00
|
|
|
"preLaunchTask": "Build osu! (Release)",
|
2017-04-26 13:25:46 +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": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Game.Tournament.Tests/bin/Debug/net5.0/osu.Game.Tournament.Tests.dll",
|
2019-06-21 14:00:48 +08:00
|
|
|
"--tournament"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"preLaunchTask": "Build tournament tests (Debug)",
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Tournament (Tests, Release)",
|
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2021-01-19 11:13:27 +08:00
|
|
|
"${workspaceRoot}/osu.Game.Tournament.Tests/bin/Debug/net5.0/osu.Game.Tournament.Tests.dll",
|
2019-06-21 14:00:48 +08:00
|
|
|
"--tournament"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"preLaunchTask": "Build tournament tests (Release)",
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
2020-01-08 21:31:58 +08:00
|
|
|
{
|
|
|
|
"name": "Benchmark",
|
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
2021-01-19 11:13:27 +08:00
|
|
|
"program": "${workspaceRoot}/osu.Game.Benchmarks/bin/Release/net5.0/osu.Game.Benchmarks.dll",
|
2020-01-08 21:31:58 +08:00
|
|
|
"args": [
|
|
|
|
"--filter",
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"preLaunchTask": "Build benchmarks",
|
|
|
|
"console": "internalConsole"
|
2016-10-14 22:11:41 +08:00
|
|
|
}
|
|
|
|
]
|
2020-03-04 21:45:01 +08:00
|
|
|
}
|