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