Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump dotnet to 8.0 to support jellyfin 10.9 #8

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
fetch-depth: 0
-
name: Setup .NET Core
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: "6.0.x"
dotnet-version: 8.x
-
name: Build Jellyfin Plugin
uses: oddstr13/[email protected]
id: jprm
with:
dotnet-target: "net6.0"
dotnet-target: net8.0
-
name: Upload Artifact
uses: actions/upload-artifact@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
fetch-depth: 0
-
name: Setup .NET Core
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.x
-
name: Build Jellyfin Plugin
uses: oddstr13/[email protected]
id: jprm
with:
dotnet-target: net6.0
dotnet-target: net8.0
-
name: Prepare Release Checksums
run: |-
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.RefreshSparse</RootNamespace>
<AssemblyVersion>3.1.0.0</AssemblyVersion>
<FileVersion>3.1.0.0</FileVersion>
Expand All @@ -16,7 +16,7 @@
<PackageReference Include="Jellyfin.Controller" Version="10.*-*" />
<PackageReference Include="Jellyfin.Model" Version="10.*-*" />
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma warning disable CS1591
#pragma warning disable CA1851

using System;
using System.Collections.Generic;
Expand Down
6 changes: 3 additions & 3 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: "RefreshSparse"
guid: "12b44f20-6cfb-4be5-9950-3d0fbe74fa35"
version: "3.1.0.0"
targetAbi: "10.8.0.0"
framework: "net6.0"
targetAbi: "10.9.0.0"
framework: "net8.0"
overview: "Refresh episodes based on (missing) metadata"
description: >
Find episode that are recent and/or are missing certain
Expand All @@ -13,4 +13,4 @@ owner: "SenorSmartyPants"
artifacts:
- "Jellyfin.Plugin.RefreshSparse.dll"
changelog: >
10.8.0 support
10.9.0 support
Loading