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