Fixed plugin template to build and copy correctly, allowing settings button to show and the plugin to register. (#84)

This commit is contained in:
T-Gander
2025-11-23 06:19:48 -07:00
committed by GitHub
parent d544b71939
commit 6277846394
3 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
"name": "Launch",
"request": "launch",
"preLaunchTask": "build-and-copy",
"program": "${config:jellyfinDir}/bin/Debug/net8.0/jellyfin.dll",
"program": "${config:jellyfinDir}/bin/Debug/net9.0/jellyfin.dll",
"args": [
//"--nowebclient"
"--webdir",
+2 -2
View File
@@ -60,14 +60,14 @@
"command": "cp",
"windows": {
"args": [
"./${config:pluginName}/bin/Debug/net8.0/publish/*",
"./${config:pluginName}/bin/Debug/net9.0/publish/*",
"${config:jellyfinWindowsDataDir}/plugins/${config:pluginName}/"
]
},
"linux": {
"args": [
"-r",
"./${config:pluginName}/bin/Debug/net8.0/publish/*",
"./${config:pluginName}/bin/Debug/net9.0/publish/*",
"${config:jellyfinLinuxDataDir}/plugins/${config:pluginName}/"
]
}