mirror of
https://github.com/ppy/osu-tools.git
synced 2025-06-07 23:07:01 +09:00
33 lines
No EOL
1.1 KiB
JSON
33 lines
No EOL
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug (Performance Calculator)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "dotnet",
|
|
"args": [
|
|
"${workspaceRoot}/PerformanceCalculator/bin/Debug/net8.0/PerformanceCalculator.dll",
|
|
"place-your-arguments-here (launch.json)"
|
|
],
|
|
"cwd": "${workspaceRoot}",
|
|
"preLaunchTask": "Build (Debug)",
|
|
"env": {},
|
|
"console": "internalConsole"
|
|
},
|
|
{
|
|
"name": "Release (Performance Calculator)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "dotnet",
|
|
"args": [
|
|
"${workspaceRoot}/PerformanceCalculator/bin/Release/net8.0/PerformanceCalculator.dll",
|
|
"place-your-arguments-here (launch.json)"
|
|
],
|
|
"cwd": "${workspaceRoot}",
|
|
"preLaunchTask": "Build (Release)",
|
|
"env": {},
|
|
"console": "internalConsole"
|
|
}
|
|
]
|
|
} |