HangFire 0.8.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package HangFire --version 0.8.0
NuGet\Install-Package HangFire -Version 0.8.0
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" Version="0.8.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HangFire --version 0.8.0
#r "nuget: HangFire, 0.8.0"
#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 as a Cake Addin
#addin nuget:?package=HangFire&version=0.8.0

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

Background job system for ASP.NET – a reliable way to kick off long-running tasks from the request processing pipeline as fire-and-forget jobs. No Windows service / Task Scheduler required. Even ASP.NET is not required. Backed by SQL Server or Redis.
     http://hangfire.io/

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories (22)

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

Repository Stars
elsa-workflows/elsa-core
A .NET workflows library
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
fullstackhero/dotnet-webapi-starter-kit
production grade .net 8 webapi starter kit with multitenancy support and clean code. 🔥
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
dotnetcore/osharp
OSharp是一个基于.Net6.0的快速开发框架,框架对 AspNetCore 的配置、依赖注入、日志、缓存、实体框架、Mvc(WebApi)、身份认证、功能权限、数据权限等模块进行更高一级的自动化封装,并规范了一套业务实现的代码结构与操作流程,使 .Net 框架更易于应用到实际项目开发中。
Version Downloads Last updated
1.4.2 4,249 5/6/2015
1.4.1 5,911 4/14/2015
1.4.0 578 4/13/2015
1.4.0-rc2 59 4/11/2015
1.4.0-rc1 73 4/9/2015
1.4.0-beta1 243 3/19/2015
1.3.4 9,944 2/4/2015
1.3.3 1,284 1/28/2015
1.3.2 425 1/27/2015
1.3.1 2,386 1/13/2015
1.3.0 2,496 12/10/2014
1.2.2 1,855 11/24/2014
1.2.1 246 11/22/2014
1.2.0 920 11/17/2014
1.1.1 9,061 9/5/2014
1.1.0 824 9/3/2014
1.0.2 3,255 7/1/2014
1.0.1 153 6/30/2014
1.0.0 113 6/30/2014
0.9.1 292 6/12/2014
0.9.0 120 6/7/2014
0.8.3 87 5/23/2014
0.8.2 80 5/21/2014
0.8.1 77 5/17/2014
0.8.0 161 5/2/2014
0.7.5 78 4/10/2014
0.7.4 75 4/7/2014
0.7.3 77 4/4/2014
0.7.2 64 4/4/2014
0.7.1 72 4/1/2014
0.7.0 67 3/22/2014
0.6.2 64 1/28/2014
0.6.1 65 1/27/2014
0.6.0 63 1/27/2014
0.5.2 72 11/19/2013
0.5.1 71 11/12/2013
0.5.0 73 11/10/2013
0.3.0-alpha8 61 9/18/2013
0.2.0-alpha4 52 9/5/2013
0.1.0 102 9/4/2013

https://github.com/odinserj/HangFire/releases
   
0.8
* New - New server component subsystem - more reliability, more logging, less blocking on stop.
* New - Added monitor access authorization using ASP.NET RoleProvider.
* Removed - Deprecated job format based on classes is not supported anymore (obsolete since 0.6.0).
* Changed - Monitor access restricted to local requests only by default.
* Changed - Some breaking changes for public API. Please, read GitHub release notes for details.
* Changed - Default automatic retry attempts count set to 10.
* Changed - Namespace optimization to reduce number of needed 'using' statements.
* Fixed - PreserveCultureAttribute does not work.
* Fixed - SqlServerStorageOptions.QueuePollInterval is not working.
* Fixed - Rare 'arithmetic overflow error for data type tinyint, value = -1' exception.
* Fixed - Numerous minor issues catched with new unit tests.

0.7.5
* Added possibility to change the job expiration time.
* Clarified common exception message.
0.7.4
* Removed `BackgroundJobServer.MachineName` validation. It caused exceptions with valid NetBIOS names.
* Ability to specify target queue in `BackgroundJob.Enqueue` method.
* Opened `IBackgroundJobClient` and `BackgroundJobClient` types. You can use them instead of static `BackgroundJob` class.
* Fixed theoretical IClientFilter issue (CreateContext ctor did not copy the JobId).
0.7.3
* Fixed TypeLoadException: Method 'get_Db' not found in HangFire.Redis.
* Added RedisStorage ctor overloads with default host, port and db.
0.7.1
* HangFire.Autofac package.
* HangFire.Ninject package.
* Added some Sphinx-based docs.
* New project site and docs site.
* Some minor fixes.
0.7
* Changed NuGet package structure. See the Upgrading Guide on GitHub!
* Job storage abstraction.
* SQL Server job storage implementation.
* Using Common.Logging for logging and Json.NET for json encoding.
* Short exception stack traces, they contain only your code.
* Improved job fetching implementation.
* Removed obsolete `Perform` class.
* Increased default worker number.
* Clarified some type names, state subsystem was greatly simplified.
* Fixed: empty MVC 5 project Internal Server Error.
* Fixed: Apply the Failed state when state filters/handlers cause an exception.
* Fixed: Some history statistic counters do not expire.
* Fixed: Use `StatisticsHistoryFilter` by default.
* Fixed some internal mistakes.