Move scripts to scripts directory and remove odcs no longer needed.

This commit is contained in:
2026-03-03 17:10:46 -05:00
parent c76853a442
commit 895372fe98
20 changed files with 0 additions and 1079 deletions
-28
View File
@@ -1,28 +0,0 @@
# PowerShell script to rebuild the Jellyfin solution properly
# This script cleans and rebuilds in the correct order to resolve CS0006 metadata errors
Write-Host "Starting Jellyfin solution rebuild..." -ForegroundColor Cyan
# Step 1: Clean the solution
Write-Host "`n[1/3] Cleaning solution..." -ForegroundColor Yellow
dotnet clean Jellyfin.sln --configuration Debug
# Remove obj and bin directories to ensure clean state
Write-Host "`n[2/3] Removing build artifacts..." -ForegroundColor Yellow
Get-ChildItem -Path . -Include bin,obj -Recurse -Directory | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
# Step 3: Restore NuGet packages
Write-Host "`n[3/3] Restoring NuGet packages..." -ForegroundColor Yellow
dotnet restore Jellyfin.sln
# Step 4: Build the solution
Write-Host "`n[4/4] Building solution..." -ForegroundColor Yellow
dotnet build Jellyfin.sln --configuration Debug --no-restore
Write-Host "`nBuild complete!" -ForegroundColor Green
Write-Host "If you still see errors, try building specific projects in this order:" -ForegroundColor Cyan
Write-Host " 1. Jellyfin.Database.Implementations" -ForegroundColor Gray
Write-Host " 2. Jellyfin.Database.Providers.Postgres" -ForegroundColor Gray
Write-Host " 3. Jellyfin.Server.Implementations" -ForegroundColor Gray
Write-Host " 4. Emby.Server.Implementations" -ForegroundColor Gray
Write-Host " 5. Jellyfin.Server" -ForegroundColor Gray