Cultiv.Hangfire 1.0.1

.NET 5.0
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.
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.
// Install Cultiv.Hangfire as a Cake Addin
#addin nuget:?package=Cultiv.Hangfire&version=1.0.1

// Install Cultiv.Hangfire as a Cake Tool
#tool nuget:?package=Cultiv.Hangfire&version=1.0.1

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. 
Compatible target framework(s)
Additional computed target framework(s)
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
2.3.0 9,424 11/9/2022
2.2.1 722 11/3/2022
2.2.0 505 11/2/2022
2.2.0-rc001 72 11/2/2022
2.1.0 1,777 7/29/2022
2.0.1 434 7/19/2022
2.0.1-rc003 90 7/19/2022
2.0.1-rc002 85 7/19/2022
2.0.1-rc001 88 7/19/2022
2.0.0 467 6/23/2022
2.0.0-rc001 132 5/22/2022
1.0.1 3,812 3/7/2022
1.0.0 1,838 10/10/2021
1.0.0-rc001 217 9/19/2021