VOOZH about

URL: https://www.nuget.org/packages/Quartz.Jobs/

⇱ NuGet Gallery | Quartz.Jobs 3.18.1




👁 Image
Quartz.Jobs 3.18.1

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

Installation

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

Install-Package Quartz.Jobs

Features

DirectoryScanJob

Inspects a directory and compares whether any files' "last modified dates" have changed since the last time it was inspected. If one or more files have been updated (or created), the job invokes a "call-back" method on an IDirectoryScanListenerthat can be found in the SchedulerContext.

FileScanJob

Inspects a file and compares whether its "last modified dates" have changed since the last time it was inspected. If one or more files have been updated (or created), the job invokes a "call-back" method on an IFileScanListenerthat can be found in the SchedulerContext.

NativeJob

Built in job for executing native executables in a separate process.

Example*

var job = new JobDetail("dumbJob", null, typeof(Quartz.Jobs.NativeJob));
job.JobDataMap.Put(Quartz.Jobs.NativeJob.PropertyCommand, "echo \"hi\" >> foobar.txt");
var trigger = TriggerUtils.MakeSecondlyTrigger(5);
trigger.Name = "dumbTrigger";
await scheduler.ScheduleJob(job, trigger);

If PropertyWaitForProcess is true, then the integer exit value of the process will be saved as the job execution result in the JobExecutionContext.

SendMailJob

A Job which sends an e-mail with the configured content to the configured recipient.

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 was computed.  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 was computed.  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 was computed.  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 is compatible.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 is compatible.  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.
  • .NETFramework 4.6.2

  • .NETFramework 4.7.2

  • .NETStandard 2.0

NuGet packages (27)

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

Package Downloads
Quartz.Plugins

Quartz.NET Plugins; Quartz Scheduling Framework for .NET

Castle.Facilities.Quartz

Castle Windsor Quartz facility lets you easily add windsor to Quartz apps.

Cogito.Quartz

Provides utilites and extensions for Quartz.

eV.Module.Job

eV.Module.Job

Hummingbird.Extensions.Quartz

Package Description

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Quartz.Jobs:

Repository Stars
guoming/Hummingbird
分布式锁,分布式ID,分布式消息队列、配置中心、注册中心、服务注册发现、超时、重试、熔断、负载均衡
yc-l/yc.boilerplate
YC. Boilerplate is a set of loose coupling, flexible combination, complete functions, convenient development, and reduces the workload of development.
microsoft/Recurring-Integrations-Scheduler
Recurring Integrations Scheduler (RIS) is a solution that can be used in file-based integration scenarios for Dynamics 365 Finance and Dynamics 365 Supply Chain Management.
Version Downloads Last Updated
3.18.1 51,796 4/25/2026
3.18.0 38,286 4/11/2026
3.17.1 12,681 4/3/2026
3.17.0 8,223 3/29/2026
3.16.1 45,759 3/4/2026
3.16.0 4,513 3/1/2026
3.15.1 177,044 10/26/2025
3.15.0 121,070 8/3/2025
3.14.0 397,107 3/8/2025
3.13.1 493,060 11/2/2024
3.13.0 218,356 8/10/2024
3.12.0 28,212 8/3/2024
3.11.0 107,445 7/7/2024
3.10.0 40,004 6/26/2024
3.9.0 537,809 5/9/2024
3.8.1 747,950 2/17/2024
3.8.0 660,941 11/18/2023
3.7.0 688,194 8/4/2023
3.6.3 394,671 6/25/2023
3.6.2 1,205,307 2/25/2023
Loading failed