HangFire.Core 1.4.2

dotnet add package HangFire.Core --version 1.4.2
NuGet\Install-Package HangFire.Core -Version 1.4.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HangFire.Core" Version="1.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HangFire.Core --version 1.4.2
#r "nuget: HangFire.Core, 1.4.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install HangFire.Core as a Cake Addin
#addin nuget:?package=HangFire.Core&version=1.4.2

// Install HangFire.Core as a Cake Tool
#tool nuget:?package=HangFire.Core&version=1.4.2

Core components for Hangfire (background job system for ASP.NET applications).

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories (40)

Showing the top 5 popular GitHub repositories that depend on HangFire.Core:

Repository Stars
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
MassTransit/MassTransit
Distributed Application Framework for .NET
elsa-workflows/elsa-core
A .NET workflows library
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
Version Downloads Last updated
1.4.2 4,886 5/6/2015
1.4.1 6,840 4/14/2015
1.4.0 863 4/13/2015
1.4.0-rc2 66 4/11/2015
1.4.0-rc1 76 4/9/2015
1.4.0-beta1 251 3/19/2015
1.3.4 12,771 2/4/2015
1.3.3 1,549 1/28/2015
1.3.2 588 1/27/2015
1.3.1 2,585 1/13/2015
1.3.0 3,262 12/10/2014
1.2.2 2,070 11/24/2014
1.2.1 246 11/22/2014
1.2.0 1,042 11/17/2014
1.1.1 10,762 9/5/2014
1.1.0 918 9/3/2014
1.0.2 3,571 7/1/2014
1.0.1 387 6/30/2014
1.0.0 96 6/30/2014
0.9.1 541 6/12/2014
0.9.0 106 6/7/2014
0.8.3 79 5/23/2014
0.8.2 66 5/21/2014
0.8.1 93 5/17/2014
0.8.0 151 5/2/2014
0.7.5 94 4/10/2014
0.7.4 59 4/7/2014
0.7.3 58 4/4/2014
0.7.1 60 4/1/2014
0.7.0 73 3/22/2014
0.6.2 59 1/28/2014
0.6.1 60 1/27/2014
0.5.2 68 11/19/2013
0.5.1 60 11/12/2013
0.5.0 73 11/10/2013

https://github.com/HangfireIO/Hangfire/releases
   
1.4.2
* Added – Missing generic methods for continuations (by @yngndrw).
* Fixed – MSMQ extension does not work without explicit queue names in `UseMsmqQueues`.
* Fixed – Missing null-check in Retries page after casting connection to `JobStorageConnection`.
* Fixed – Enqueued jobs cannot be deleted from the Dashboard.
* Fixed – Error when building the project using `build.bat` on a machine with VS 2013 only (by @Cussa).
   
1.4.1
* Fixed – 1.4.0 ignoring `BackgroundJobServerOptions` settings in `UseHangfireServer` method.
   
1.4.0
* Added – Extension methods related to `LogProvider` implementation for `IGlobalConfiguration`.
* Changed – Continuations do not require configuration now.
   
1.4.0-rc2
* Changed – Retry a job when there was an exception during state transition instead of moving it to the Failed state.
* Fixed – Don't leak foreground colors in ColouredConsoleLogger.
* Obsolete – `BackgroundJobServer`'s `Start` and `Stop` methods are obsolete.
   
1.4.0-rc1
* Added – Add a notice about failed jobs expiration time.
* Added – Show warnings in Dashboard for jobs processing by inactive servers.
* Fixed – Hangfire stops processing when storage outage was too long.
   
1.4.0-beta1
* Added – Job continuations, please see new `BackgroundJob.ContinueWith` methods.
* Added – Time zone support for recurring jobs using `TimeZoneInfo` class.
* Added – Single place for global configuration, please see `GlobalConfiguration` class.
* Added – Made configurable the 'Back to Site' path in the dashboard (by @ysasaki1985).
* Added – Ability to plug in custom dashboard pages and modify navigation.
* Added – Ability to add custom metrics to the Home page in Dashboard.
* Added – Test coverage badge from Coveralls application.
* Added – Dedicated page for retrying jobs to distinguish them from other scheduled jobs.
* Added – Show expiration time on Job Details page.
* Added – More methods for build-in storage through `JobStorageConnection` and `JobStorageTransaction` classes.
* Added – Paging support for Recurring Jobs page.
* Added – New OWIN's `IAppBuilder` extension methods: `UseHangfireDashboard` and `UseHangfireServer`.
* Changed – New look and feel for Dashboard. New navigation, less colors, more accents.
* Changed – Determine job type of a current object when `MethodCallExpression` has `Object` property set.
* Changed – Making Product Version and File Version on the dll match the Assembly Version (by @fire-eagle).
* Changed – Use different log level for exceptions occured within automatic retry wrapper.
* Fixed – Recurring Page throws exception from CronExpressionDescriptor library.