Add Jellyfin.CodeAnalysis and analyzers to all projects
Integrated Jellyfin.CodeAnalysis as a project reference across core and test projects. Added centrally managed code analysis and style enforcement packages (IDisposableAnalyzers, Microsoft.CodeAnalysis.BannedApiAnalyzers, SerilogAnalyzer, SmartAnalyzers.MultithreadingAnalyzer, StyleCop.Analyzers) to all affected projects. Updated dependency graphs, asset files, and build scripts to ensure analyzers run during builds, enforcing consistent code quality and style rules throughout the codebase. Removed custom warning properties to rely on analyzer enforcement.
This commit is contained in:
+340
-12
@@ -39,20 +39,13 @@
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Model\\MediaBrowser.Model.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Model\\MediaBrowser.Model.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"allWarningsAsErrors": true,
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
],
|
||||
"warnNotAsError": [
|
||||
"NU1902",
|
||||
"NU1903"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
@@ -63,6 +56,45 @@
|
||||
"frameworks": {
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
"AsyncKeyedLock": "8.0.2",
|
||||
"AutoFixture": "4.18.1",
|
||||
@@ -473,6 +505,9 @@
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"projectReferences": {
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Database\\Jellyfin.Database.Implementations\\Jellyfin.Database.Implementations.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Database\\Jellyfin.Database.Implementations\\Jellyfin.Database.Implementations.csproj"
|
||||
}
|
||||
@@ -500,10 +535,47 @@
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.Extensions.Logging": {
|
||||
"target": "Package",
|
||||
"version": "[11.0.0-preview.1.26104.118, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
@@ -918,6 +990,9 @@
|
||||
"projectReferences": {
|
||||
"E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Model\\MediaBrowser.Model.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Model\\MediaBrowser.Model.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -942,6 +1017,45 @@
|
||||
"frameworks": {
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
"AsyncKeyedLock": "8.0.2",
|
||||
"AutoFixture": "4.18.1",
|
||||
@@ -1505,6 +1619,9 @@
|
||||
"E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Model\\MediaBrowser.Model.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Model\\MediaBrowser.Model.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.MediaEncoding.Keyframes\\Jellyfin.MediaEncoding.Keyframes.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.MediaEncoding.Keyframes\\Jellyfin.MediaEncoding.Keyframes.csproj"
|
||||
}
|
||||
@@ -1537,15 +1654,47 @@
|
||||
"version": "[2.5.4, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder": {
|
||||
"target": "Package",
|
||||
"version": "[11.0.0-preview.1.26104.118, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
@@ -1961,6 +2110,9 @@
|
||||
"E:\\Projects\\pgsql-jellyfin\\Jellyfin.Data\\Jellyfin.Data.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\Jellyfin.Data\\Jellyfin.Data.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Extensions\\Jellyfin.Extensions.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Extensions\\Jellyfin.Extensions.csproj"
|
||||
}
|
||||
@@ -1988,17 +2140,49 @@
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"MimeTypes": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.5.2, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
@@ -2578,6 +2762,13 @@
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
@@ -2589,6 +2780,13 @@
|
||||
"version": "[3.11.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.CSharp": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
@@ -2600,6 +2798,24 @@
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
@@ -2732,7 +2948,11 @@
|
||||
"frameworks": {
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"projectReferences": {}
|
||||
"projectReferences": {
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
@@ -2756,6 +2976,20 @@
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
@@ -2779,6 +3013,24 @@
|
||||
"target": "Package",
|
||||
"version": "[8.6.5, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
@@ -3190,7 +3442,11 @@
|
||||
"frameworks": {
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"projectReferences": {}
|
||||
"projectReferences": {
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
@@ -3227,10 +3483,42 @@
|
||||
"version": "[60.1.0-alpha.356, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Jellyfin.Sdk": {
|
||||
"target": "Package",
|
||||
"version": "[2025.10.21, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
@@ -4128,6 +4416,9 @@
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Controller\\MediaBrowser.Controller.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\MediaBrowser.Controller\\MediaBrowser.Controller.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4152,6 +4443,40 @@
|
||||
"frameworks": {
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"dependencies": {
|
||||
"IDisposableAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.0.8, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[4.14.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SerilogAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[0.15.0, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"SmartAnalyzers.MultithreadingAnalyzer": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.1.31, )",
|
||||
"versionCentrallyManaged": true
|
||||
},
|
||||
"StyleCop.Analyzers": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[1.2.0-beta.556, )",
|
||||
"versionCentrallyManaged": true
|
||||
}
|
||||
},
|
||||
"centralPackageVersions": {
|
||||
"AsyncKeyedLock": "8.0.2",
|
||||
"AutoFixture": "4.18.1",
|
||||
@@ -4562,6 +4887,9 @@
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"projectReferences": {
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Networking\\Jellyfin.Networking.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Networking\\Jellyfin.Networking.csproj"
|
||||
}
|
||||
|
||||
@@ -1095,7 +1095,9 @@
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"Jellyfin.Model": "10.12.0"
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Model": "10.12.0",
|
||||
"Jellyfin.Sdk": "2025.10.21"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/Jellyfin.Common.dll": {}
|
||||
@@ -1112,6 +1114,7 @@
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"BitFaster.Caching": "2.5.4",
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Common": "10.12.0",
|
||||
"Jellyfin.MediaEncoding.Keyframes": "10.11.0",
|
||||
"Jellyfin.Model": "10.12.0",
|
||||
@@ -1130,7 +1133,9 @@
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Database.Implementations": "10.11.0",
|
||||
"Jellyfin.Sdk": "2025.10.21",
|
||||
"Microsoft.Extensions.Logging": "11.0.0-preview.1.26104.118"
|
||||
},
|
||||
"compile": {
|
||||
@@ -1144,6 +1149,7 @@
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Microsoft.EntityFrameworkCore.Relational": "11.0.0-preview.1.26104.118",
|
||||
"Polly": "8.6.5"
|
||||
},
|
||||
@@ -1160,6 +1166,7 @@
|
||||
"dependencies": {
|
||||
"Diacritics": "4.1.4",
|
||||
"ICU4N.Transliterator": "60.1.0-alpha.356",
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Sdk": "2025.10.21"
|
||||
},
|
||||
"compile": {
|
||||
@@ -1188,6 +1195,7 @@
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Data": "10.12.0",
|
||||
"Jellyfin.Extensions": "10.12.0",
|
||||
"Jellyfin.Sdk": "2025.10.21"
|
||||
@@ -1206,8 +1214,10 @@
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Common": "10.12.0",
|
||||
"Jellyfin.Model": "10.12.0"
|
||||
"Jellyfin.Model": "10.12.0",
|
||||
"Jellyfin.Sdk": "2025.10.21"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/Jellyfin.Naming.dll": {}
|
||||
@@ -1220,6 +1230,7 @@
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v11.0",
|
||||
"dependencies": {
|
||||
"Jellyfin.CodeAnalysis": "1.0.0",
|
||||
"Jellyfin.Common": "10.12.0",
|
||||
"Jellyfin.Controller": "10.12.0"
|
||||
},
|
||||
@@ -2867,6 +2878,7 @@
|
||||
"projectFileDependencyGroups": {
|
||||
"net11.0": [
|
||||
"FsCheck.Xunit >= 3.3.2",
|
||||
"Jellyfin.CodeAnalysis >= 1.0.0",
|
||||
"Jellyfin.Networking >= 1.0.0",
|
||||
"Jellyfin.Sdk >= 2025.10.21",
|
||||
"Microsoft.CodeAnalysis.BannedApiAnalyzers >= 4.14.0",
|
||||
@@ -2914,6 +2926,9 @@
|
||||
"net11.0": {
|
||||
"targetAlias": "net11.0",
|
||||
"projectReferences": {
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.CodeAnalysis\\Jellyfin.CodeAnalysis.csproj"
|
||||
},
|
||||
"E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Networking\\Jellyfin.Networking.csproj": {
|
||||
"projectPath": "E:\\Projects\\pgsql-jellyfin\\src\\Jellyfin.Networking\\Jellyfin.Networking.csproj"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "2beOD7YFSA8=",
|
||||
"dgSpecHash": "VqeAp96kZ+8=",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\Projects\\pgsql-jellyfin\\tests\\Jellyfin.Networking.Tests\\Jellyfin.Networking.Tests.csproj",
|
||||
"expectedPackageFiles": [
|
||||
|
||||
Reference in New Issue
Block a user