Quartz 3.20.1
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 |
|---|---|
|
Quartz.Serialization.Json
Quartz.NET JSON Serialization Support
|
2 |
|
Quartz.Serialization.Newtonsoft
Quartz.NET Json.NET serialization - the job store serializer for a database already holding Newtonsoft.Json's output. New applications use the System.Text.Json one built into Quartz; Quartz Scheduling Framework for .NET
|
1 |
|
Quartz.Serialization.Newtonsoft
Quartz.NET JSON Serialization Support; Quartz Scheduling Framework for .NET
|
1 |
|
Quartz.Serialization.Json
Quartz.NET JSON Serialization Support; Quartz Scheduling Framework for .NET
|
1 |
|
Quartz.Serialization.Json
Quartz.NET JSON Serialization Support
|
1 |
https://github.com/quartznet/quartznet/releases
.NET 10.0
- Microsoft.Extensions.Logging.Abstractions (>= 2.1.1)
.NET Framework 4.6.2
- Microsoft.Extensions.Logging.Abstractions (>= 2.1.1)
.NET Framework 4.7.2
- Microsoft.Extensions.Logging.Abstractions (>= 2.1.1)
- System.Diagnostics.DiagnosticSource (>= 4.7.1)
.NET 8.0
- Microsoft.Extensions.Logging.Abstractions (>= 2.1.1)
.NET 9.0
- Microsoft.Extensions.Logging.Abstractions (>= 2.1.1)
.NET Standard 2.0
- Microsoft.Extensions.Logging.Abstractions (>= 2.1.1)
- System.Diagnostics.DiagnosticSource (>= 4.7.1)
| Version | Downloads | Last updated |
|---|---|---|
| 4.1.1 | 0 | 2026/9/19 |
| 4.1.0 | 1 | 2026/9/15 |
| 4.0.1 | 1 | 2026/9/15 |
| 4.0.0 | 1 | 2026/9/15 |
| 3.22.0 | 1 | 2026/9/15 |
| 3.21.0 | 1 | 2026/9/15 |
| 3.20.1 | 1 | 2026/9/15 |
| 3.20.0 | 1 | 2026/9/15 |
| 3.19.1 | 0 | 2026/7/26 |
| 3.19.0 | 1 | 2026/9/15 |
| 3.18.2 | 2 | 2026/8/10 |
| 3.18.1 | 0 | 2026/4/25 |
| 3.18.0 | 0 | 2026/4/11 |
| 3.17.1 | 0 | 2026/4/3 |
| 3.17.0 | 0 | 2026/3/29 |
| 3.16.1 | 0 | 2026/3/4 |
| 3.16.0 | 0 | 2026/3/1 |
| 3.15.1 | 0 | 2025/10/26 |
| 3.15.0 | 0 | 2025/8/3 |
| 3.14.0 | 1 | 2026/8/20 |
| 3.13.1 | 0 | 2024/11/2 |
| 3.13.0 | 0 | 2024/8/10 |
| 3.12.0 | 0 | 2024/8/3 |
| 3.11.0 | 0 | 2024/7/7 |
| 3.10.0 | 0 | 2024/6/26 |
| 3.9.0 | 0 | 2024/5/9 |
| 3.8.1 | 0 | 2024/2/17 |
| 3.8.0 | 0 | 2023/11/18 |
| 3.7.0 | 0 | 2023/8/4 |
| 3.6.3 | 0 | 2023/6/25 |
| 3.6.2 | 0 | 2023/2/25 |
| 3.6.1 | 0 | 2023/2/25 |
| 3.6.0 | 0 | 2023/1/29 |
| 3.5.0 | 0 | 2022/9/18 |
| 3.4.0 | 0 | 2022/3/27 |
| 3.3.3 | 0 | 2021/8/1 |
| 3.3.2 | 1 | 2026/9/15 |
| 3.3.1 | 0 | 2021/4/8 |
| 3.3.0 | 0 | 2021/4/7 |
| 3.2.4 | 0 | 2021/1/19 |
| 3.2.3 | 0 | 2020/10/31 |
| 3.2.2 | 0 | 2020/10/19 |
| 3.2.1 | 0 | 2020/10/18 |
| 3.2.0 | 0 | 2020/10/2 |
| 3.1.0 | 0 | 2020/7/24 |
| 3.0.7 | 1 | 2026/8/20 |
| 3.0.6 | 0 | 2018/7/6 |
| 3.0.5 | 0 | 2018/5/27 |
| 3.0.4 | 0 | 2018/3/4 |
| 3.0.3 | 1 | 2026/9/15 |
| 3.0.2 | 1 | 2026/9/15 |
| 3.0.1 | 0 | 2018/1/21 |
| 3.0.0 | 0 | 2017/12/30 |
| 2.6.2 | 0 | 2018/5/27 |
| 2.6.1 | 0 | 2017/10/9 |
| 2.6.0 | 1 | 2026/9/15 |
| 2.5.0 | 0 | 2017/2/18 |
| 2.4.1 | 0 | 2016/8/24 |
| 2.4.0 | 0 | 2016/8/18 |
| 2.3.3 | 0 | 2015/7/9 |
| 2.3.2 | 0 | 2015/3/30 |
| 2.3.1 | 0 | 2015/1/15 |
| 2.3.0 | 0 | 2014/11/8 |
| 2.2.4 | 0 | 2014/7/27 |
| 2.2.3 | 0 | 2014/3/30 |
| 2.2.2 | 0 | 2014/2/9 |
| 2.2.1 | 0 | 2013/11/24 |
| 2.2.0 | 0 | 2013/9/9 |
| 2.1.2 | 0 | 2013/1/13 |
| 2.1.1 | 1 | 2026/9/15 |
| 2.1.0 | 0 | 2012/12/31 |
| 2.0.1 | 0 | 2012/4/22 |
| 2.0.0 | 0 | 2012/4/9 |
| 1.0.3 | 0 | 2011/8/3 |