2016-10-14 22:11:41 +08:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
2018-03-26 09:52:54 +08:00
|
|
|
"configurations": [
|
|
|
|
{
|
2018-04-20 13:41:57 +08:00
|
|
|
"name": "VisualTests (Debug, net471)",
|
2018-03-26 09:52:54 +08:00
|
|
|
"windows": {
|
|
|
|
"type": "clr"
|
|
|
|
},
|
|
|
|
"type": "mono",
|
2016-10-14 22:11:41 +08:00
|
|
|
"request": "launch",
|
2018-04-20 13:41:57 +08:00
|
|
|
"program": "${workspaceRoot}/osu.Game.Tests/bin/Debug/net471/osu.Game.Tests.exe",
|
2016-10-14 22:11:41 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-03-26 09:52:54 +08:00
|
|
|
"preLaunchTask": "Build (Debug, msbuild)",
|
2017-10-11 16:05:00 +08:00
|
|
|
"runtimeExecutable": null,
|
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2018-04-20 13:41:57 +08:00
|
|
|
"name": "VisualTests (Release, net471)",
|
2018-03-26 09:52:54 +08:00
|
|
|
"windows": {
|
|
|
|
"type": "clr"
|
|
|
|
},
|
|
|
|
"type": "mono",
|
2017-10-11 16:05:00 +08:00
|
|
|
"request": "launch",
|
2018-05-29 16:27:21 +08:00
|
|
|
"program": "${workspaceRoot}/osu.Game.Tests/bin/Release/net471/osu.Game.Tests.exe",
|
2017-11-19 16:24:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-03-26 09:52:54 +08:00
|
|
|
"preLaunchTask": "Build (Release, msbuild)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"runtimeExecutable": null,
|
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2018-04-20 13:41:57 +08:00
|
|
|
"name": "osu! (Debug, net471)",
|
2018-03-26 09:52:54 +08:00
|
|
|
"windows": {
|
|
|
|
"type": "clr"
|
|
|
|
},
|
|
|
|
"type": "mono",
|
2017-11-19 16:24:32 +08:00
|
|
|
"request": "launch",
|
2018-04-20 13:41:57 +08:00
|
|
|
"program": "${workspaceRoot}/osu.Desktop/bin/Debug/net471/osu!.exe",
|
2017-11-19 16:24:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-03-26 09:52:54 +08:00
|
|
|
"preLaunchTask": "Build (Debug, msbuild)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"runtimeExecutable": null,
|
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2018-04-20 13:41:57 +08:00
|
|
|
"name": "osu! (Release, net471)",
|
2018-03-26 09:52:54 +08:00
|
|
|
"windows": {
|
|
|
|
"type": "clr"
|
|
|
|
},
|
|
|
|
"type": "mono",
|
2017-11-19 16:24:32 +08:00
|
|
|
"request": "launch",
|
2018-04-20 13:41:57 +08:00
|
|
|
"program": "${workspaceRoot}/osu.Desktop/bin/Release/net471/osu!.exe",
|
2017-10-11 16:05:00 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-03-26 09:52:54 +08:00
|
|
|
"preLaunchTask": "Build (Release, msbuild)",
|
2016-12-19 07:00:32 +08:00
|
|
|
"runtimeExecutable": null,
|
2017-04-26 13:25:46 +08:00
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2018-06-02 21:20:17 +08:00
|
|
|
"name": "VisualTests (Debug, netcoreapp2.1)",
|
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": [
|
2018-06-02 21:20:17 +08:00
|
|
|
"${workspaceRoot}/osu.Game.Tests/bin/Debug/netcoreapp2.1/osu.Game.Tests.dll"
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2016-12-19 07:00:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-05-29 14:18:54 +08:00
|
|
|
"preLaunchTask": "Build tests (Debug, dotnet)",
|
2016-10-14 22:11:41 +08:00
|
|
|
"env": {},
|
2017-04-09 17:59:43 +08:00
|
|
|
"console": "internalConsole"
|
2016-10-14 22:11:41 +08:00
|
|
|
},
|
|
|
|
{
|
2018-06-02 21:20:17 +08:00
|
|
|
"name": "VisualTests (Release, netcoreapp2.1)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"type": "coreclr",
|
2018-03-26 09:52:54 +08:00
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2018-06-02 21:20:17 +08:00
|
|
|
"${workspaceRoot}/osu.Game.Tests/bin/Release/netcoreapp2.1/osu.Game.Tests.dll"
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2017-11-19 16:24:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-05-29 14:18:54 +08:00
|
|
|
"preLaunchTask": "Build tests (Release, dotnet)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2018-06-02 21:20:17 +08:00
|
|
|
"name": "osu! (Debug, netcoreapp2.1)",
|
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": [
|
2018-06-02 21:20:17 +08:00
|
|
|
"${workspaceRoot}/osu.Desktop/bin/Debug/netcoreapp2.1/osu!.dll",
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2017-11-19 16:24:32 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-05-29 14:18:54 +08:00
|
|
|
"preLaunchTask": "Build osu! (Debug, dotnet)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
|
|
|
},
|
|
|
|
{
|
2018-06-02 21:20:17 +08:00
|
|
|
"name": "osu! (Release, netcoreapp2.1)",
|
2017-11-19 16:24:32 +08:00
|
|
|
"type": "coreclr",
|
2018-03-26 09:52:54 +08:00
|
|
|
"request": "launch",
|
|
|
|
"program": "dotnet",
|
|
|
|
"args": [
|
2018-06-02 21:20:17 +08:00
|
|
|
"${workspaceRoot}/osu.Desktop/bin/Release/netcoreapp2.1/osu!.dll",
|
2018-03-26 09:52:54 +08:00
|
|
|
],
|
2017-04-26 13:25:46 +08:00
|
|
|
"cwd": "${workspaceRoot}",
|
2018-05-29 14:18:54 +08:00
|
|
|
"preLaunchTask": "Build osu! (Release, dotnet)",
|
2017-04-26 13:25:46 +08:00
|
|
|
"env": {},
|
|
|
|
"console": "internalConsole"
|
2016-10-14 22:11:41 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|