Quartz.AspNetCore 4.0.0-alpha.3

Quartz.AspNetCore

Quartz.AspNetCore adds the two things a Quartz.NET scheduler wants from an ASP.NET Core application: an HTTP API that exposes scheduler management endpoints, and a health check that reports unhealthy when the scheduler is not running or cannot reach its store.

Hosting itself is in the core Quartz package — AddQuartz and AddQuartzHostedService need no extra reference. Quartz 3's AddQuartzServer, which registered the hosted service and a health check together, is gone.

Installation

dotnet add package Quartz.AspNetCore

Usage

WebApplicationBuilder builder = WebApplication.CreateBuilder(args);

builder.AddQuartz();
builder.Services.AddQuartzHttpApi();
builder.AddQuartzHostedService(options => options.WaitForJobsToComplete = true);
builder.Services.AddHealthChecks().AddQuartz();

WebApplication app = builder.Build();

app.MapQuartzHttpApi().RequireAuthorization();
app.MapHealthChecks("/healthz");

The API manages jobs and triggers, so authorize it: MapQuartzHttpApi returns the endpoint convention builder to say so on. The health check takes tags, so it can be filtered into separate liveness and readiness probes, and a named scheduler gets a check of its own.

Documentation

No packages depend on Quartz.AspNetCore.

https://github.com/quartznet/quartznet/releases

.NET 10.0

Version Downloads Last updated
4.0.0-alpha.3 2 08/27/2026
4.0.0-alpha.2 1 08/25/2026
4.0.0-alpha.1 7 08/23/2026
3.20.0 0 08/27/2026
3.19.1 15 07/28/2026
3.19.0 12 07/24/2026
3.18.2 25 06/28/2026
3.18.1 40 04/27/2026
3.18.0 42 04/17/2026
3.17.1 34 04/17/2026
3.17.0 35 04/17/2026
3.16.1 31 04/17/2026
3.16.0 33 04/17/2026
3.15.1 34 04/17/2026
3.15.0 31 04/17/2026
3.14.0 34 04/17/2026
3.13.1 28 04/17/2026
3.13.0 36 04/17/2026
3.12.0 33 04/17/2026
3.11.0 33 04/17/2026
3.10.0 31 04/17/2026
3.9.0 34 04/17/2026
3.8.1 37 04/17/2026
3.8.0 24 04/17/2026
3.7.0 34 04/17/2026
3.6.3 36 04/17/2026
3.6.2 36 04/17/2026
3.6.1 23 04/17/2026
3.6.0 34 04/17/2026
3.5.0 32 04/17/2026
3.4.0 26 04/17/2026
3.3.3 34 04/17/2026
3.3.2 33 04/17/2026
3.3.1 34 04/17/2026
3.3.0 27 04/17/2026
3.2.4 34 04/17/2026
3.2.3 34 04/17/2026
3.2.2 32 04/17/2026
3.2.1 34 04/17/2026
3.2.0 32 04/17/2026
3.1.0 37 04/17/2026
1.0.4 36 04/17/2026
1.0.1 33 04/17/2026
1.0.0 37 04/17/2026