Files
Jellyfin-Comments/Jellyfin.Plugin.RedditComments/Jellyfin.Plugin.RedditComments.csproj
Gabrieal Jimmy ee94f4fd49 Fix
2026-07-16 13:54:01 -05:00

39 lines
1.6 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.RedditComments</RootNamespace>
<AssemblyName>Jellyfin.Plugin.RedditComments</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.11.11">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Jellyfin.Model" Version="10.11.11">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<!-- 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>
<None Remove="Configuration\configPage.html" />
<EmbeddedResource Include="Configuration\configPage.html" />
<None Remove="Web\reddit-comments.js" />
<EmbeddedResource Include="Web\reddit-comments.js" />
</ItemGroup>
</Project>