This commit is contained in:
CodeDevMLH
2025-12-14 23:53:15 +01:00
parent 8093922211
commit c867c892de
3 changed files with 7 additions and 5 deletions

View File

@@ -1,7 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<JellyfinVersion>10.11.0</JellyfinVersion>
<TargetFramework Condition="$(JellyfinVersion.StartsWith('10.11'))">net9.0</TargetFramework>
<TargetFramework Condition="!$(JellyfinVersion.StartsWith('10.11'))">net8.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.Seasonals</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
@@ -16,10 +18,10 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.11.0" >
<PackageReference Include="Jellyfin.Controller" Version="$(JellyfinVersion)">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Jellyfin.Model" Version="10.11.0">
<PackageReference Include="Jellyfin.Model" Version="$(JellyfinVersion)">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>