20 lines
548 B
JSON
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/net8.0/jellyfin.dll",
|
|
"args": [
|
|
//"--nowebclient"
|
|
"--webdir",
|
|
"${config:jellyfinWebDir}/dist/"
|
|
],
|
|
"cwd": "${config:jellyfinDir}",
|
|
}
|
|
]
|
|
}
|