123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": ".NET Launch (console)",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build",
- "program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/net9.0/jellyfin.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Jellyfin.Server",
- "console": "internalConsole",
- "stopAtEntry": false,
- "internalConsoleOptions": "openOnSessionStart",
- "serverReadyAction": {
- "action": "openExternally",
- "pattern": "Overriding address\\(es\\) \\'(https?:\\S+)\\'",
- }
- },
- {
- "name": ".NET Launch (nowebclient)",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build",
- "program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/net9.0/jellyfin.dll",
- "args": ["--nowebclient"],
- "cwd": "${workspaceFolder}/Jellyfin.Server",
- "console": "internalConsole",
- "stopAtEntry": false,
- "internalConsoleOptions": "openOnSessionStart"
- },
- {
- "name": "ghcs .NET Launch (nowebclient, ffmpeg)",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build",
- "program": "${workspaceFolder}/Jellyfin.Server/bin/Debug/net9.0/jellyfin.dll",
- "args": ["--nowebclient", "--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"],
- "cwd": "${workspaceFolder}/Jellyfin.Server",
- "console": "internalConsole",
- "stopAtEntry": false,
- "internalConsoleOptions": "openOnSessionStart"
- },
- {
- "name": ".NET Attach",
- "type": "coreclr",
- "request": "attach",
- "processId": "${command:pickProcess}"
- }
- ],
- "env": {
- "DOTNET_CLI_TELEMETRY_OPTOUT": "1"
- }
- }
|