![]() |
VOOZH | about |
dotnet add package CodeDesignPlus.Net.Hangfire --version 1.0.0-beta.12897
NuGet\Install-Package CodeDesignPlus.Net.Hangfire -Version 1.0.0-beta.12897
<PackageReference Include="CodeDesignPlus.Net.Hangfire" Version="1.0.0-beta.12897" />
<PackageVersion Include="CodeDesignPlus.Net.Hangfire" Version="1.0.0-beta.12897" />Directory.Packages.props
<PackageReference Include="CodeDesignPlus.Net.Hangfire" />Project file
paket add CodeDesignPlus.Net.Hangfire --version 1.0.0-beta.12897
#r "nuget: CodeDesignPlus.Net.Hangfire, 1.0.0-beta.12897"
#:package CodeDesignPlus.Net.Hangfire@1.0.0-beta.12897
#addin nuget:?package=CodeDesignPlus.Net.Hangfire&version=1.0.0-beta.12897&prereleaseInstall as a Cake Addin
#tool nuget:?package=CodeDesignPlus.Net.Hangfire&version=1.0.0-beta.12897&prereleaseInstall 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>
CodeDesignPlus.Net.Hangfire es un paquete NuGet del SDK de CodeDesignPlus que integra Hangfire como motor de background jobs en microservicios .NET 9.
IRedisFactory del ecosistema CodeDesignPlus para obtener la conexión Redis sin configuración adicional.IRecurrentJob en el ensamblado del microservicio.[RecurringJobOptions("0 6 * * *")] para definir el cron directamente en la clase.Dashboard.Enable = true.Hangfire de appsettings.json.{
"Hangfire": {
"Enable": true,
"Prefix": "hangfire:ms-invoicing:",
"WorkerCount": 2,
"Queues": ["default", "critical"],
"Dashboard": {
"Enable": true,
"Username": "admin",
"Password": "your-secure-password"
}
}
}
// 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);
[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;
}
}
Distributed under the LGPL-3.0 License. See for more information.
CodeDesignPlus - support@codedesignplus.com
Project Link: CodeDesignPlus.Net.Sdk
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-beta.12897 | 0 | 6/19/2026 |
| 0.13.0-beta.12851 | 48 | 6/3/2026 |
| 0.13.0-beta.12850 | 191 | 5/31/2026 |
| 0.13.0-beta.12848 | 116 | 5/25/2026 |
| 0.13.0-beta.12847 | 175 | 5/24/2026 |
| 0.13.0-beta.12840 | 93 | 5/21/2026 |
| 0.13.0-beta.12839 | 200 | 5/20/2026 |
| 0.13.0-beta.12822 | 275 | 5/18/2026 |
| 0.13.0-beta.12816 | 53 | 5/18/2026 |
| 0.13.0-beta.12815 | 88 | 5/17/2026 |
| 0.13.0-beta.12808 | 67 | 5/17/2026 |