HangFire.Core
1.4.2
dotnet add package HangFire.Core --version 1.4.2
NuGet\Install-Package HangFire.Core -Version 1.4.2
<PackageReference Include="HangFire.Core" Version="1.4.2" />
paket add HangFire.Core --version 1.4.2
#r "nuget: HangFire.Core, 1.4.2"
// 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 | Versions 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. |
-
- Newtonsoft.Json (>= 5.0.0)
- Owin (>= 1.0.0)
GitHub repositories (45)
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
|
|
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.
|
|
eventflow/EventFlow
Async/await first CQRS+ES and DDD framework for .NET
|
Version | Downloads | Last updated |
---|---|---|
1.4.2 | 4,887 | 5/6/2015 |
1.4.1 | 6,841 | 4/14/2015 |
1.4.0 | 863 | 4/13/2015 |
1.4.0-rc2 | 66 | 4/11/2015 |
1.4.0-rc1 | 77 | 4/9/2015 |
1.4.0-beta1 | 252 | 3/19/2015 |
1.3.4 | 12,771 | 2/4/2015 |
1.3.3 | 1,550 | 1/28/2015 |
1.3.2 | 589 | 1/27/2015 |
1.3.1 | 2,586 | 1/13/2015 |
1.3.0 | 3,263 | 12/10/2014 |
1.2.2 | 2,070 | 11/24/2014 |
1.2.1 | 246 | 11/22/2014 |
1.2.0 | 1,043 | 11/17/2014 |
1.1.1 | 10,764 | 9/5/2014 |
1.1.0 | 919 | 9/3/2014 |
1.0.2 | 3,572 | 7/1/2014 |
1.0.1 | 388 | 6/30/2014 |
1.0.0 | 98 | 6/30/2014 |
0.9.1 | 543 | 6/12/2014 |
0.9.0 | 108 | 6/7/2014 |
0.8.3 | 81 | 5/23/2014 |
0.8.2 | 67 | 5/21/2014 |
0.8.1 | 95 | 5/17/2014 |
0.8.0 | 152 | 5/2/2014 |
0.7.5 | 96 | 4/10/2014 |
0.7.4 | 61 | 4/7/2014 |
0.7.3 | 59 | 4/4/2014 |
0.7.1 | 62 | 4/1/2014 |
0.7.0 | 74 | 3/22/2014 |
0.6.2 | 61 | 1/28/2014 |
0.6.1 | 61 | 1/27/2014 |
0.5.2 | 68 | 11/19/2013 |
0.5.1 | 60 | 11/12/2013 |
0.5.0 | 74 | 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.