CodeDesignPlus.Net.Hangfire 1.0.0-beta.13014

This is a prerelease version of CodeDesignPlus.Net.Hangfire.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package CodeDesignPlus.Net.Hangfire --version 1.0.0-beta.13014
                    
NuGet\Install-Package CodeDesignPlus.Net.Hangfire -Version 1.0.0-beta.13014
                    
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="CodeDesignPlus.Net.Hangfire" Version="1.0.0-beta.13014" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeDesignPlus.Net.Hangfire" Version="1.0.0-beta.13014" />
                    
Directory.Packages.props
<PackageReference Include="CodeDesignPlus.Net.Hangfire" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CodeDesignPlus.Net.Hangfire --version 1.0.0-beta.13014
                    
#r "nuget: CodeDesignPlus.Net.Hangfire, 1.0.0-beta.13014"
                    
#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.
#:package CodeDesignPlus.Net.Hangfire@1.0.0-beta.13014
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CodeDesignPlus.Net.Hangfire&version=1.0.0-beta.13014&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CodeDesignPlus.Net.Hangfire&version=1.0.0-beta.13014&prerelease
                    
Install as a Cake Tool

<br /> <p align="center"> <a href="https://github.com/codedesignplus/CodeDesignPlus.Net.Sdk/tree/main/packages/CodeDesignPlus.Net.Hangfire"> <img src="https://i.imgur.com/PwbGy0o.png" alt="Logo"> </a>

<h3 align="center">CodeDesignPlus.Net.Hangfire</h3>

<p align="center"> Wrapper de Hangfire para el ecosistema CodeDesignPlus: Redis como storage, auto-descubrimiento de jobs y dashboard opcional. <br /> <a href="https://codedesignplus.com"> <strong>Explore the docs »</strong> </a> <br /> <br /> <a href="https://github.com/codedesignplus/CodeDesignPlus.Net.Sdk/issues"> <img src="https://img.shields.io/github/issues/codedesignplus/CodeDesignPlus.Net.Sdk?color=0088ff&style=for-the-badge&logo=github" alt="issues"/> </a> <a href="https://github.com/codedesignplus/CodeDesignPlus.Net.Sdk/pulls"> <img src="https://img.shields.io/github/issues-pr/codedesignplus/CodeDesignPlus.Net.Sdk?color=0088ff&style=for-the-badge&logo=github" alt="pull requests"/> </a> </p> </p>

About The Project

CodeDesignPlus.Net.Hangfire es un paquete NuGet del SDK de CodeDesignPlus que integra Hangfire como motor de background jobs en microservicios .NET 9.

Key Features

  • Redis Storage: Usa IRedisFactory del ecosistema CodeDesignPlus para obtener la conexión Redis sin configuración adicional.
  • Auto-descubrimiento de jobs: Detecta automáticamente clases que implementan IRecurrentJob en el ensamblado del microservicio.
  • Atributo declarativo: Decora tus jobs con [RecurringJobOptions("0 6 * * *")] para definir el cron directamente en la clase.
  • Dashboard opcional: Habilita el panel de Hangfire con autenticación básica vía Dashboard.Enable = true.
  • Options Pattern: Configuración centralizada en la sección Hangfire de appsettings.json.

Getting Started

Configuración en appsettings.json

{
  "Hangfire": {
    "Enable": true,
    "Prefix": "hangfire:ms-invoicing:",
    "WorkerCount": 2,
    "Queues": ["default", "critical"],
    "Dashboard": {
      "Enable": true,
      "Username": "admin",
      "Password": "your-secure-password"
    }
  }
}

Registro en Program.cs

// Registra Hangfire con Redis y auto-descubre los jobs del ensamblado
builder.Services.AddHangfire<Program>(builder.Configuration);

// En el pipeline HTTP
app.UseHangfireDashboard<Program>(app.Configuration);

Definir un job recurrente

[RecurringJobOptions("0 6 * * *", jobId: "daily-report", timezone: "America/Bogota")]
public class DailyReportJob : IRecurrentJob
{
    public Task ExecuteAsync(IJobCancellationToken cancellationToken)
    {
        // lógica del job
        return Task.CompletedTask;
    }
}

License

Distributed under the LGPL-3.0 License. See LICENSE for more information.

Contact

CodeDesignPlus - support@codedesignplus.com

Project Link: CodeDesignPlus.Net.Sdk

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-beta.13083 14 9/22/2026
1.0.0-beta.13054 142 9/19/2026
1.0.0-beta.13028 79 9/18/2026
1.0.0-beta.13014 73 9/17/2026
1.0.0-beta.12995 212 9/8/2026
1.0.0-beta.12973 94 9/7/2026
1.0.0-beta.12949 85 9/7/2026
1.0.0-beta.12948 61 9/7/2026
1.0.0-beta.12947 71 8/26/2026
1.0.0-beta.12922 131 8/20/2026
1.0.0-beta.12921 89 8/18/2026
1.0.0-beta.12920 96 7/29/2026
1.0.0-beta.12919 71 7/29/2026
1.0.0-beta.12918 77 7/28/2026
1.0.0-beta.12917 76 7/27/2026
1.0.0-beta.12916 63 7/27/2026
1.0.0-beta.12914 60 7/27/2026
1.0.0-beta.12913 63 7/27/2026
1.0.0-beta.12912 257 7/15/2026
1.0.0-beta.12911 170 7/13/2026
Loading failed