Retarget plugin to Jellyfin 12 RC

This commit is contained in:
ajp_anton
2026-07-16 00:42:52 +00:00
parent e38ccf7a0c
commit a6acccfa66
4 changed files with 13 additions and 12 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
Multilang is a Jellyfin plugin that lets different users see different metadata
languages without changing Jellyfin's stored metadata.
The plugin is built for the Jellyfin 10.11.x stable series and is currently
early beta software.
The `main` branch is built for the Jellyfin 10.11.x stable series. The
`jellyfin12` branch targets Jellyfin 12 and is currently early beta software.
## What It Does
+1 -1
View File
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.116",
"version": "10.0.110",
"rollForward": "latestFeature"
}
}
@@ -2,13 +2,13 @@
<PropertyGroup>
<RootNamespace>Jellyfin.Plugin.Multilang</RootNamespace>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<Version>0.2.1</Version>
<AssemblyVersion>0.2.1.0</AssemblyVersion>
<FileVersion>0.2.1.0</FileVersion>
<Version>0.3.0</Version>
<AssemblyVersion>0.3.0.0</AssemblyVersion>
<FileVersion>0.3.0.0</FileVersion>
<Authors>ajp_anton</Authors>
</PropertyGroup>
@@ -17,13 +17,14 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.11.9">
<PackageReference Include="Jellyfin.Controller" Version="12.0.0-rc2">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Jellyfin.Model" Version="10.11.9">
<PackageReference Include="Jellyfin.Model" Version="12.0.0-rc2">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" />
</ItemGroup>
<ItemGroup>
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
@@ -13,7 +13,7 @@
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="Jellyfin.Common" Version="10.11.9" />
<PackageReference Include="Jellyfin.Common" Version="12.0.0-rc2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />