jellyfin / jellyfin-plugin-opensubtitles

Home Page:https://jellyfin.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error in manual build

kip-13 opened this issue · comments

commented

Hi, when i trying to build the plugin i get an error

Microsoft (R) Build Engine version 16.4.0+e901037fe for .NET Core
Copyright (C) Microsoft Corporation. All rights reserved.

/usr/share/dotnet/sdk/3.1.107/NuGet.targets(123,5): error : '10.*-*' is not a valid version string. [/home/user/repos/jellyfin/jellyfin-plugin-opensubtitles/Jellyfin.Plugin.OpenSubtitles.sln]

Looks like is related to package versioning

<PackageReference Include="Jellyfin.Controller" Version="10.*-*" />

commented

It works removing -*, so:

<PackageReference Include="Jellyfin.Controller" Version="10.*" />