CodeDesignPlus.Net.Hangfire 1.0.0-beta.13463

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.13463
                    
NuGet\Install-Package CodeDesignPlus.Net.Hangfire -Version 1.0.0-beta.13463
                    
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.13463" />
                    
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.13463" />
                    
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.13463
                    
#r "nuget: CodeDesignPlus.Net.Hangfire, 1.0.0-beta.13463"
                    
#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.13463
                    
#: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.13463&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CodeDesignPlus.Net.Hangfire&version=1.0.0-beta.13463&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.13476 38 9/26/2026
1.0.0-beta.13467 29 9/26/2026
1.0.0-beta.13463 35 9/26/2026
1.0.0-beta.13449 40 9/25/2026
1.0.0-beta.13428 58 9/25/2026
1.0.0-beta.13415 48 9/25/2026
1.0.0-beta.13402 38 9/24/2026
1.0.0-beta.13390 89 9/24/2026
1.0.0-beta.13367 64 9/24/2026
1.0.0-beta.13274 73 9/24/2026
1.0.0-beta.13265 64 9/24/2026
1.0.0-beta.13239 34 9/24/2026
1.0.0-beta.13137 39 9/23/2026
1.0.0-beta.13135 33 9/23/2026
1.0.0-beta.13124 105 9/23/2026
1.0.0-beta.13114 33 9/23/2026
1.0.0-beta.13091 39 9/23/2026
1.0.0-beta.13083 34 9/22/2026
1.0.0-beta.13054 157 9/19/2026
1.0.0-beta.13028 82 9/18/2026
Loading failed