2019-01-02 07:10:43 +00:00
|
|
|
{
|
2020-06-22 04:06:03 +00:00
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2019-01-02 07:10:43 +00:00
|
|
|
{
|
2022-11-09 14:28:17 +00:00
|
|
|
"name": ".NET Launch (console)",
|
2019-01-02 07:10:43 +00:00
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "build",
|
2023-10-23 21:36:56 +00:00
|
|
|
"program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/net8.0/jellyfin.dll",
|
2019-01-02 07:10:43 +00:00
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}/Jellyfin.Server",
|
|
|
|
"console": "internalConsole",
|
|
|
|
"stopAtEntry": false,
|
2020-09-26 01:52:37 +00:00
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
|
|
"serverReadyAction": {
|
|
|
|
"action": "openExternally",
|
|
|
|
"pattern": "Overriding address\\(es\\) \\'(https?:\\S+)\\'",
|
|
|
|
}
|
2019-01-02 07:10:43 +00:00
|
|
|
},
|
2020-08-03 18:27:22 +00:00
|
|
|
{
|
2022-11-09 14:28:17 +00:00
|
|
|
"name": ".NET Launch (nowebclient)",
|
2020-08-03 18:27:22 +00:00
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "build",
|
2023-10-23 21:36:56 +00:00
|
|
|
"program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/net8.0/jellyfin.dll",
|
2020-08-03 18:27:22 +00:00
|
|
|
"args": ["--nowebclient"],
|
|
|
|
"cwd": "${workspaceFolder}/Jellyfin.Server",
|
|
|
|
"console": "internalConsole",
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
|
|
},
|
2024-01-19 00:48:03 +00:00
|
|
|
{
|
|
|
|
"name": "ghcs .NET Launch (nowebclient, ffmpeg)",
|
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "build",
|
|
|
|
"program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/net8.0/jellyfin.dll",
|
2024-01-19 11:25:39 +00:00
|
|
|
"args": ["--nowebclient", "--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"],
|
2024-01-19 00:48:03 +00:00
|
|
|
"cwd": "${workspaceFolder}/Jellyfin.Server",
|
|
|
|
"console": "internalConsole",
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
|
|
},
|
2019-01-02 07:10:43 +00:00
|
|
|
{
|
2022-11-09 14:28:17 +00:00
|
|
|
"name": ".NET Attach",
|
2019-01-02 07:10:43 +00:00
|
|
|
"type": "coreclr",
|
|
|
|
"request": "attach",
|
|
|
|
"processId": "${command:pickProcess}"
|
|
|
|
}
|
2020-06-22 04:06:03 +00:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"DOTNET_CLI_TELEMETRY_OPTOUT": "1"
|
|
|
|
}
|
2019-10-22 22:57:38 +00:00
|
|
|
}
|