From 401c24f599eaa57224cefe42133212c5109aea5e Mon Sep 17 00:00:00 2001 From: Wendell Jones Date: Wed, 8 Jul 2026 14:04:07 -0400 Subject: [PATCH] Update package reference for Microsoft.Extensions.DependencyModel and modify restore command for Linux --- Jellyfin.Server/Jellyfin.Server.csproj | 2 +- rebuild-solution.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jellyfin.Server/Jellyfin.Server.csproj b/Jellyfin.Server/Jellyfin.Server.csproj index b945fad0..e70cc593 100644 --- a/Jellyfin.Server/Jellyfin.Server.csproj +++ b/Jellyfin.Server/Jellyfin.Server.csproj @@ -74,7 +74,7 @@ - + diff --git a/rebuild-solution.sh b/rebuild-solution.sh index 41629db4..8d30f510 100644 --- a/rebuild-solution.sh +++ b/rebuild-solution.sh @@ -41,7 +41,7 @@ echo "Latest changes fetched successfully." echo "Building and publishing the .NET project..." # Restore, build, and publish the .NET project -dotnet restore "$SOLUTION_FILE" +dotnet restore "$SOLUTION_FILE" -r linux-x64 dotnet build "$SOLUTION_FILE" --configuration Release --no-restore dotnet publish "$SOLUTION_FILE" --configuration Release --no-build --self-contained true -r linux-x64 --output "$PUBLISH_DIR"