Enigmatry.Entry.Scheduler
9.3.0
See the version list below for details.
dotnet add package Enigmatry.Entry.Scheduler --version 9.3.0
NuGet\Install-Package Enigmatry.Entry.Scheduler -Version 9.3.0
<PackageReference Include="Enigmatry.Entry.Scheduler" Version="9.3.0" />
<PackageVersion Include="Enigmatry.Entry.Scheduler" Version="9.3.0" />
<PackageReference Include="Enigmatry.Entry.Scheduler" />
paket add Enigmatry.Entry.Scheduler --version 9.3.0
#r "nuget: Enigmatry.Entry.Scheduler, 9.3.0"
#:package Enigmatry.Entry.Scheduler@9.3.0
#addin nuget:?package=Enigmatry.Entry.Scheduler&version=9.3.0
#tool nuget:?package=Enigmatry.Entry.Scheduler&version=9.3.0
Scheduler Building Block
Building Block with startup extensions for a scheduler webjob using Quartz jobs.
Registration
You can use the AddEntryQuartz extension method on IServiceCollection to add a Quartz hosted service to th IoC container. This extension method will also configure Quartz and dynamicall add all the jobs from your scheduler project:
public void ConfigureServices(IServiceCollection services)
{
...
services.AddEntryQuartz(context.Configuration, Assembly.GetExecutingAssembly());
}
This wil scan your currently executing assembly for all types that match the Quartz jobs that are configured in the appSettings, and provide them to Quartz as a job to be run.
Add application insights
Install the Microsoft.ApplicationInsights.WorkerService package.
Add services.AddApplicationInsightsTelemetryWorkerService(); to the ConfigureServices() method
In the
AddEntryQuartzextension method, use AddEntryApplicationInsights() to register job listener for application insights, as in the example:
services.AddEntryQuartz(configuration, Assembly.GetExecutingAssembly(), logger, quartz =>
{
quartz.AddEntryApplicationInsights();
});
services.AddApplicationInsightsTelemetryWorkerService();
Configuration
Example:
"App": {
"Scheduling": {
"Host": {
"quartz.scheduler.instanceName": "Enigmatry.Entry.Scheduler"
},
"Jobs": {
"ExampleScheduledJob": {
"Cronex": "0 * 0/10 * * ?",
"RunOnStartup": true
}
}
},
},
For more documentation on configuring Quartz and Cron expressions: https://www.quartz-scheduler.net/documentation/quartz-3.x/configuration/reference.html#quartz-net-configuration-reference
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- Enigmatry.Entry.Core (>= 9.3.0)
- Microsoft.ApplicationInsights.WorkerService (>= 2.23.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.10)
- Quartz (>= 3.15.1)
- Quartz.Extensions.DependencyInjection (>= 3.15.1)
- Quartz.Extensions.Hosting (>= 3.15.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.5.0 | 386 | 1/26/2026 |
| 9.4.0 | 319 | 12/22/2025 |
| 9.3.1-preview.3 | 244 | 12/18/2025 |
| 9.3.1-preview.1 | 155 | 11/25/2025 |
| 9.3.0 | 673 | 11/10/2025 |
| 9.2.0 | 784 | 9/24/2025 |
| 9.1.1-preview.5 | 215 | 8/8/2025 |
| 9.1.1-preview.4 | 146 | 6/27/2025 |
| 9.1.1-preview.3 | 154 | 6/4/2025 |
| 9.1.0 | 300 | 6/3/2025 |
| 9.0.1-preview.8 | 169 | 5/26/2025 |
| 9.0.1-preview.7 | 255 | 5/13/2025 |
| 9.0.1-preview.6 | 417 | 5/9/2025 |
| 9.0.1-preview.5 | 190 | 5/7/2025 |
| 9.0.1-preview.4 | 164 | 4/30/2025 |
| 8.3.1-preview.1 | 150 | 12/24/2025 |
| 8.3.0 | 407 | 12/23/2025 |
| 8.2.0 | 342 | 9/24/2025 |
| 8.1.1-preview.3 | 160 | 5/7/2025 |
| 8.1.1-preview.1 | 165 | 4/1/2025 |