Cultiv.Hangfire 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Cultiv.Hangfire --version 1.0.1
                    
NuGet\Install-Package Cultiv.Hangfire -Version 1.0.1
                    
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="Cultiv.Hangfire" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cultiv.Hangfire" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Cultiv.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 Cultiv.Hangfire --version 1.0.1
                    
#r "nuget: Cultiv.Hangfire, 1.0.1"
                    
#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 Cultiv.Hangfire@1.0.1
                    
#: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=Cultiv.Hangfire&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Cultiv.Hangfire&version=1.0.1
                    
Install as a Cake Tool

Cultiv.Hangfire

Hangfire dashboard for Umbraco

This installs Hangfire and a dashboard in Umbraco, the dashboard is secured and is only available for users with access to the Settings section of Umbraco.

After installing this, you can add a Composer to start running scheduled tasks, for example:

using System.Threading;
using Hangfire;
using Hangfire.Console;
using Hangfire.Server;
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.DependencyInjection;

namespace MyNamespace
{
    public class Composer : IComposer
    {
        public void Compose(IUmbracoBuilder builder)
        {            
            RecurringJob.AddOrUpdate(() => DoIt(null), Cron.Hourly());
        }
        
        public void DoIt(PerformContext context)
        {
            var progressBar =  context.WriteProgressBar();
            var items = new int[10]{ 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 };

            foreach (var item in items.WithProgress(progressBar, items.Length))
            {
                context.WriteLine($"Number: {item}");
                Thread.Sleep(1000);
            }
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Cultiv.Hangfire:

Package Downloads
uSync.Complete.Hangfire

Hangfire helpers for uSync.Complete

uSync.Hangfire

Hangfire helpers for uSync

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.2.0 2,131 12/7/2025
5.1.0 236 12/7/2025
5.0.0 349 11/28/2025
4.1.3 13,632 2/20/2025
4.1.2 356 2/20/2025
4.1.1 338 2/20/2025
4.1.0 325 2/20/2025
4.0.1 4,578 5/30/2024
4.0.0 475 5/8/2024
4.0.0-beta2 162 5/2/2024
4.0.0-beta1 213 3/7/2024
3.1.2 125,236 9/18/2023
3.1.1 351 9/18/2023
3.1.0 312 9/18/2023
3.0.0 4,274 8/21/2023
2.3.0 39,221 11/9/2022
2.2.1 2,389 11/3/2022
2.2.0 845 11/2/2022
2.2.0-rc001 316 11/2/2022
1.0.1 5,300 3/7/2022
Loading failed