18 lines
859 B
XML
18 lines
859 B
XML
<Project>
|
|
<!--
|
|
The Jellyfin meta build workflow rewrites Directory.Build.props, stamping Version,
|
|
AssemblyVersion and FileVersion all to a date-based value (e.g. 1.0.20260627.182).
|
|
The build segment (20260627) exceeds the 16-bit limit (0-65535) that AssemblyVersion
|
|
and FileVersion require, which fails the compile (CS7034/CS7035).
|
|
|
|
Directory.Build.targets is imported AFTER the project (and after Directory.Build.props),
|
|
and the workflow does not touch it, so we force valid assembly/file versions here. The
|
|
package/plugin manifest Version stays as injected; only the .NET assembly identity is
|
|
normalised, which is fine because Jellyfin identifies plugins by GUID + manifest version.
|
|
-->
|
|
<PropertyGroup>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
</Project>
|