Files
Jellyfin-Plugin-Template/.vscode/launch.json
oceans2alaska 699c5f72bf
Some checks failed
🔬 Run CodeQL / call (push) Has been cancelled
🏷️ Sync labels / call (push) Has been cancelled
Initial commit
2026-03-24 10:05:20 -07:00

20 lines
548 B
JSON

{
// Paths and plugin names are configured in settings.json
"version": "0.2.0",
"configurations": [
{
"type": "coreclr",
"name": "Launch",
"request": "launch",
"preLaunchTask": "build-and-copy",
"program": "${config:jellyfinDir}/bin/Debug/net9.0/jellyfin.dll",
"args": [
//"--nowebclient"
"--webdir",
"${config:jellyfinWebDir}/dist/"
],
"cwd": "${config:jellyfinDir}",
}
]
}