VOOZH about

URL: https://www.nuget.org/packages/Quartz.Extensions.Hosting/

⇱ NuGet Gallery | Quartz.Extensions.Hosting 3.18.1




👁 Image
Quartz.Extensions.Hosting 3.18.1

Prefix Reserved
dotnet add package Quartz.Extensions.Hosting --version 3.18.1
 
 
NuGet\Install-Package Quartz.Extensions.Hosting -Version 3.18.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.18.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Quartz.Extensions.Hosting" Version="3.18.1" />
 
Directory.Packages.props
<PackageReference Include="Quartz.Extensions.Hosting" />
 
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 Quartz.Extensions.Hosting --version 3.18.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Quartz.Extensions.Hosting, 3.18.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 Quartz.Extensions.Hosting@3.18.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=Quartz.Extensions.Hosting&version=3.18.1
 
Install as a Cake Addin
#tool nuget:?package=Quartz.Extensions.Hosting&version=3.18.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 to learn more about configuring Quartz scheduler, jobs and triggers.

Need multiple independent schedulers in one application? See . :::

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

NuGet packages (152)

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

Package Downloads
Quartz.AspNetCore

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

MassTransit.Quartz

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.

Elsa.Quartz

Provides integration with the Quartz.NET library and provide am implementation of Elsa's IJobScheduler using Quartz.NET.

Onion.Quartz

Package Description

GitHub repositories (32)

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

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
MassTransit/MassTransit
Distributed Application Framework for .NET
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
oskardudycz/EventSourcing.NetCore
Examples and Tutorials of Event Sourcing in .NET
BrighterCommand/Brighter
A framework for building messaging apps with .NET and C#.
Cleanuparr/Cleanuparr
Advanced download manager for the Servarr ecosystem
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
Reaparr/Reaparr
Plex downloader that brings content from any server to yours!
NexusForever/NexusForever
An emulator for the defunct MMORPG WildStar which supports build 16042 (Final Patch)
AntonioFalcaoJr/EventualShop
A state-of-the-art distributed system using Reactive DDD as uncertainty modeling, Event Storming as subdomain decomposition, Event Sourcing as an eventual persistence mechanism, CQRS, Async Projections, Microservices for individual deployable units, Event-driven Architecture for efficient integration, and Clean Architecture as domain-centric design
thbst16/dotnet-blazor-crud
Modular application for database CRUD with Blazor. Uses an in-memory database and features dummy data generation and data pagination.
damienbod/AspNetCoreOpenIddict
OpenIddict with Angular and Blazor WASM BFF OpenID Connect Code Flow with PKCE clients and ASP.NET Core APIs
thomasduft/openiddict-ui
A headless UI for the OpenIddict-Core stack.
andrewlock/asp-dot-net-core-in-action-2e
Source code examples for ASP.NET Core in Action, Second Edition
shuyu-labs/WebCode
WebCode is a browser-based AI coding platform that lets you remotely run CLI assistants like Claude Code and Codex. Code anywhere with just a web browser. We’re also adding an office-assistant mode for planning, research/summaries, meeting notes, and drafting docs/emails—connected to your project context.
lithnet/access-manager
Access Manager provides web-based access to local admin (LAPS) passwords, BitLocker recovery keys, and just-in-time administrative access to Windows computers in a modern, secure, and user-friendly way.
andrewlock/asp-dot-net-core-in-action-3e
Source code examples for ASP.NET Core in Action, Third Edition
lminlone/repliqate
A modular Docker container/volume backup solution
ZaqueuCavalcante/syki
Full Education Management System.
Nfactor26/pixel-identity
Bootstrapper for https://github.com/openiddict/openiddict-core and Asp.net Identity with a blazor based UI .
Version Downloads Last Updated
3.18.1 746,726 4/25/2026
3.18.0 294,824 4/11/2026
3.17.1 170,954 4/3/2026
3.17.0 222,965 3/29/2026
3.16.1 816,744 3/4/2026
3.16.0 1,545,926 3/1/2026
3.15.1 4,142,964 10/26/2025
3.15.0 2,687,545 8/3/2025
3.14.0 6,288,860 3/8/2025
3.13.1 9,903,941 11/2/2024
3.13.0 4,151,487 8/10/2024
3.12.0 485,573 8/3/2024
3.11.0 1,336,138 7/7/2024
3.10.0 398,372 6/26/2024
3.9.0 2,227,490 5/9/2024
3.8.1 3,591,620 2/17/2024
3.8.0 3,914,504 11/18/2023
3.7.0 2,838,009 8/4/2023
3.6.3 1,143,829 6/25/2023
3.6.2 4,133,632 2/25/2023
Loading failed