Quartz 3.18.2

Quartz.NET

Quartz.NET is a full-featured, open source job scheduling system that can be used from the smallest apps to large scale enterprise systems.

Installation

dotnet add package Quartz

To add JSON serialization for persistent job stores, also add Quartz.Serialization.SystemTextJson (or Quartz.Serialization.Json).

Quick start

using Quartz;
using Quartz.Impl;

// grab the scheduler instance from the factory and start it
StdSchedulerFactory factory = new StdSchedulerFactory();
IScheduler scheduler = await factory.GetScheduler();
await scheduler.Start();

// define the job and tie it to our HelloJob class
IJobDetail job = JobBuilder.Create<HelloJob>()
    .WithIdentity("job1", "group1")
    .Build();

// trigger the job to run now, and then repeat every 10 seconds
ITrigger trigger = TriggerBuilder.Create()
    .WithIdentity("trigger1", "group1")
    .StartNow()
    .WithSimpleSchedule(x => x
        .WithIntervalInSeconds(10)
        .RepeatForever())
    .Build();

await scheduler.ScheduleJob(job, trigger);
public class HelloJob : IJob
{
    public async Task Execute(IJobExecutionContext context)
    {
        await Console.Out.WriteLineAsync("Greetings from HelloJob!");
    }
}

Tip: Quartz.NET comes with sane defaults — you only need explicit configuration when you want to change them.

Documentation

📖 Full documentation: https://www.quartz-scheduler.net/documentation/quartz-3.x/

Showing the top 20 packages that depend on Quartz.

Packages Downloads
MassTransit.Quartz
MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
39
Autofac.Extras.Quartz
Autofac integration for Quartz.Net.
38
MassTransit.Quartz
MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
36
Autofac.Extras.Quartz
Autofac integration for Quartz.Net.
36
MassTransit.Quartz
MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
35
Autofac.Extras.Quartz
Autofac integration for Quartz.Net.
34
Autofac.Extras.Quartz
Autofac integration for Quartz.Net
34
MassTransit.Quartz
MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
34
Autofac.Extras.Quartz
Autofac integration for Quartz.Net
33
Autofac.Extras.Quartz
Autofac integration for Quartz.Net.
33
MassTransit.Quartz
MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.
33

Version Downloads Last updated
3.18.2 1 06/28/2026
3.18.1 22 04/28/2026
3.18.0 27 04/13/2026
3.17.1 25 04/05/2026
3.17.0 27 03/31/2026
3.16.1 31 03/05/2026
3.16.0 26 03/03/2026
3.15.1 35 12/13/2025
3.15.0 35 12/20/2025
3.14.0 29 12/12/2025
3.13.1 23 12/11/2025
3.13.0 29 12/10/2025
3.12.0 32 12/11/2025
3.11.0 27 12/11/2025
3.10.0 32 12/11/2025
3.9.0 24 12/11/2025
3.8.1 20 12/09/2025
3.8.0 18 12/11/2025
3.7.0 40 12/11/2025
3.6.3 28 12/11/2025
3.6.2 23 12/11/2025
3.6.1 27 12/11/2025
3.6.0 28 12/12/2025
3.5.0 31 12/11/2025
3.4.0 25 12/11/2025
3.3.3 22 12/11/2025
3.3.2 22 12/10/2025
3.3.1 19 12/14/2025
3.3.0 26 12/11/2025
3.2.4 24 12/20/2025
3.2.3 22 12/09/2025
3.2.2 28 12/10/2025
3.2.1 24 12/11/2025
3.2.0 22 12/11/2025
3.1.0 37 12/11/2025
3.0.7 26 12/11/2025
3.0.6 30 12/11/2025
3.0.5 25 12/11/2025
3.0.4 31 12/11/2025
3.0.3 22 12/11/2025
3.0.2 29 12/11/2025
3.0.1 25 12/11/2025
3.0.0 25 12/10/2025
2.6.2 21 12/10/2025
2.6.1 24 12/11/2025
2.6.0 24 12/11/2025
2.5.0 21 12/11/2025
2.4.1 24 12/10/2025
2.4.0 28 12/11/2025
2.3.3 25 12/12/2025
2.3.2 21 12/10/2025
2.3.1 21 12/12/2025
2.3.0 27 12/10/2025
2.2.4 33 12/10/2025
2.2.3 24 12/11/2025
2.2.2 31 12/11/2025
2.2.1 30 12/13/2025
2.2.0 29 12/11/2025
2.1.2 25 12/11/2025
2.1.1 29 12/11/2025
2.1.0 23 12/11/2025
2.0.1 37 12/11/2025
2.0.0 32 12/12/2025
1.0.3 27 12/11/2025