Hangfire icon indicating copy to clipboard operation
Hangfire copied to clipboard

Update dependencies of "Hangfire.AspNet" nuget package

Open RudeySH opened this issue 1 year ago • 1 comments

I just ran into an issue where I was unknowingly using an old version of Hangfire.Core, because I was referencing Hangfire.AspNet, whose dependencies look like this:

image

RudeySH avatar Dec 14 '23 09:12 RudeySH

Please reference the required packages and its versions explicitly, Hangfire.AspNet supports every version since 1.6.0 and there's no need to bump every Hangfire-related package to a higher version with each Hangfire.Core release, since it's very impractical.

<PackageReference Include="Hangfire.Core" Version="X.Y.Z" />
<PackageReference Include="Hangfire.AspNet" Version="0.2.0" />

odinserj avatar Dec 14 '23 10:12 odinserj