This commit is contained in:
Gabrieal Jimmy
2026-07-16 13:54:01 -05:00
parent a188ab3fe0
commit ee94f4fd49
5 changed files with 22 additions and 7 deletions

View File

@@ -18,7 +18,14 @@
<PackageReference Include="Jellyfin.Model" Version="10.11.11">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.18" />
<!-- Pinned to the exact version Jellyfin 10.11.x ships for its own database (via EF Core 9.0.11).
Runtime assets are excluded: the server already has Microsoft.Data.Sqlite and the native
e_sqlite3 library loaded, so the plugin must not ship its own copies. Shipping them would
also break plugin loading, because PluginManager tries to load every *.dll in the plugin
folder as a managed assembly (including native binaries like e_sqlite3.dll). -->
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.11">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>