Fix CI
Some checks failed
🏗️ Build Plugin / build (push) Successful in 41s
Nightly Build / nightly-build (push) Failing after 35s
🧪 Test Plugin / test (push) Successful in 30s

This commit is contained in:
Duncan Tourolle 2026-06-27 11:23:53 +02:00
parent 5875f81b9b
commit 4fc79f39f7

View File

@ -8,6 +8,15 @@
<Nullable>enable</Nullable>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
<!--
Pin AssemblyVersion/FileVersion to a valid major.minor.build.revision form. The Jellyfin
meta build workflow injects a date-based package version (e.g. 1.0.20260627.179) whose
build segment exceeds the 16-bit limit (0-65535) that AssemblyVersion/FileVersion require,
which otherwise fails the compile (CS7034/CS7035). The injected -p:Version still applies to
the package/plugin manifest; only the .NET assembly identity is pinned here.
-->
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>