Quartz.Extensions.Hosting 3.8.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Quartz.Extensions.Hosting --version 3.8.1
NuGet\Install-Package Quartz.Extensions.Hosting -Version 3.8.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="Quartz.Extensions.Hosting" Version="3.8.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Quartz.Extensions.Hosting --version 3.8.1
#r "nuget: Quartz.Extensions.Hosting, 3.8.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 Quartz.Extensions.Hosting as a Cake Addin
#addin nuget:?package=Quartz.Extensions.Hosting&version=3.8.1

// Install Quartz.Extensions.Hosting as a Cake Tool
#tool nuget:?package=Quartz.Extensions.Hosting&version=3.8.1

Quartz.Extensions.Hosting provides integration with hosted services.

::: tip Quartz 3.2 or later required for Quartz.Extensions.Hosting. You can use package Quartz.AspNetCore with version 3.1. :::

Installation

You need to add NuGet package reference to your project which uses Quartz.

Quartz 3.1

Install-Package Quartz.AspNetCore 

Quartz 3.2 onwards

Install-Package Quartz.Extensions.Hosting

Using

You can add Quartz configuration by invoking an extension method AddQuartzHostedService on IServiceCollection. This will add a hosted quartz server into process that will be started and stopped based on applications lifetime.

::: tip See Quartz.Extensions.DependencyInjection documentation to learn more about configuring Quartz scheduler, jobs and triggers. :::

Example program utilizing hosted services configuration

public class Program
{
    public static void Main(string[] args)
    {
        Log.Logger = new LoggerConfiguration()
            .Enrich.FromLogContext()
            .WriteTo.Console()
            .CreateLogger();
        
        CreateHostBuilder(args).Build().Run();
    }

    public static IHostBuilder CreateHostBuilder(string[] args) =>
        Host.CreateDefaultBuilder(args)
            .UseSerilog()
            .ConfigureServices((hostContext, services) =>
            {
                // see Quartz.Extensions.DependencyInjection documentation about how to configure different configuration aspects
                services.AddQuartz(q =>
                {
                    // your configuration here
                });

                // Quartz.Extensions.Hosting hosting
                services.AddQuartzHostedService(options =>
                {
                    // when shutting down we want jobs to complete gracefully
                    options.WaitForJobsToComplete = true;
                });
            });
}

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (48)

Showing the top 5 NuGet packages that depend on Quartz.Extensions.Hosting:

Package Downloads
Quartz.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Quartz.NET ASP.NET Core integration; Quartz Scheduling Framework for .NET

MassTransit.Quartz The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.

Elsa.Activities.Temporal.Quartz

Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application. This package provides a Quartz timer provider.

Onion.Quartz

Package Description

SeedBt.Library.Core

Package Description

GitHub repositories (16)

Showing the top 5 popular GitHub repositories that depend on Quartz.Extensions.Hosting:

Repository Stars
MassTransit/MassTransit
Distributed Application Framework for .NET
elsa-workflows/elsa-core
A .NET workflows library
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
thbst16/dotnet-blazor-crud
Demo application built with the Blazor client-side hosting model (WebAssembly) and .NET Core REST APIs secured by a JWT service.
Version Downloads Last updated
3.8.1 203,397 2/17/2024
3.8.0 1,030,986 11/18/2023
3.7.0 1,434,022 8/4/2023
3.6.3 596,731 6/25/2023
3.6.2 2,259,335 2/25/2023
3.6.1 2,945 2/25/2023
3.6.0 558,722 1/29/2023
3.5.0 2,412,438 9/18/2022
3.4.0 3,046,210 3/27/2022
3.3.3 3,749,267 8/1/2021
3.3.2 1,011,031 4/9/2021
3.3.1 39,644 4/8/2021
3.3.0 11,559 4/7/2021
3.2.4 597,541 1/19/2021
3.2.3 505,273 10/31/2020
3.2.2 39,517 10/19/2020
3.2.1 9,536 10/18/2020
3.2.0 24,868 10/2/2020
1.0.0 13,362 5/30/2019