Quartz.Extensions.Hosting 1.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Quartz.Extensions.Hosting --version 1.0.0
NuGet\Install-Package Quartz.Extensions.Hosting -Version 1.0.0
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.Extensions.Hosting" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Quartz.Extensions.Hosting --version 1.0.0
#r "nuget: Quartz.Extensions.Hosting, 1.0.0"
#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.
// Install Quartz.Extensions.Hosting as a Cake Addin
#addin nuget:?package=Quartz.Extensions.Hosting&version=1.0.0

// Install Quartz.Extensions.Hosting as a Cake Tool
#tool nuget:?package=Quartz.Extensions.Hosting&version=1.0.0

Quartz Hosting

Do you want to write services the dotnet core way, using the IHostedService interface? Is Quartz server too much for your current need? Then use this extension to run your applicaton with quartz.

Install

Quartz.Extensions.Hosting is available as a Nuget-package. From the Package Manager Console enter:

    Install-Package Quartz.Extensions.Hosting

How to use in a console application

Build a generic host the normal way. Use the HostBuilder class as you normally do when building a console app. Then add in quartz and any scheduler configuration.

    var builder = new HostBuilder()
        .ConfigureServices((hostContext, services) =>
        {
            services.AddQuartz(scheduler => 
            {
                scheduler.ScheduleJob(
                    JobBuilder
                        .Create(typeof(HelloJob))
                        .Build(),
                    TriggerBuilder
                        .Create()
                        .WithSimpleSchedule(s => s
                            .WithIntervalInSeconds(5)
                            .RepeatForever())
                        .Build());
            });
        });

How to use in an MVC application

In Startup.cs, use the extension method in ConfigureServices. Order is not important with registration.

    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
        services.AddQuartz(scheduler =>
        {
            scheduler.ScheduleJob(
                JobBuilder
                    .Create(typeof(HelloJob))
                    .Build(),
                TriggerBuilder
                    .Create()
                    .WithSimpleSchedule(s => s
                        .WithIntervalInSeconds(5)
                        .RepeatForever())
                    .Build());
        });
    }
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (51)

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

Package Downloads
Quartz.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Quartz.NET ASP.NET Core integration; Quartz Scheduling Framework for .NET

MassTransit.Quartz The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

MassTransit Quartz.NET scheduler support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.

Elsa.Activities.Temporal.Quartz

Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application. This package provides a Quartz timer provider.

Onion.Quartz

Package Description

SeedBt.Library.Core

Package Description

GitHub repositories (16)

Showing the top 5 popular GitHub repositories that depend on Quartz.Extensions.Hosting:

Repository Stars
MassTransit/MassTransit
Distributed Application Framework for .NET
elsa-workflows/elsa-core
A .NET workflows library
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
thbst16/dotnet-blazor-crud
Demo application built with the Blazor client-side hosting model (WebAssembly) and .NET Core REST APIs secured by a JWT service.
Version Downloads Last updated
3.8.1 648,296 2/17/2024
3.8.0 1,301,519 11/18/2023
3.7.0 1,571,220 8/4/2023
3.6.3 640,758 6/25/2023
3.6.2 2,384,465 2/25/2023
3.6.1 3,280 2/25/2023
3.6.0 589,406 1/29/2023
3.5.0 2,514,733 9/18/2022
3.4.0 3,155,765 3/27/2022
3.3.3 3,815,666 8/1/2021
3.3.2 1,025,805 4/9/2021
3.3.1 40,728 4/8/2021
3.3.0 11,794 4/7/2021
3.2.4 609,347 1/19/2021
3.2.3 524,925 10/31/2020
3.2.2 40,404 10/19/2020
3.2.1 9,769 10/18/2020
3.2.0 25,224 10/2/2020
1.0.0 14,746 5/30/2019

Targets netstandard2.2