Quartz.Dashboard
3.18.2
Prefix Reserved
dotnet add package Quartz.Dashboard --version 3.18.2
NuGet\Install-Package Quartz.Dashboard -Version 3.18.2
<PackageReference Include="Quartz.Dashboard" Version="3.18.2" />
<PackageVersion Include="Quartz.Dashboard" Version="3.18.2" />
<PackageReference Include="Quartz.Dashboard" />
paket add Quartz.Dashboard --version 3.18.2
#r "nuget: Quartz.Dashboard, 3.18.2"
#:package Quartz.Dashboard@3.18.2
#addin nuget:?package=Quartz.Dashboard&version=3.18.2
#tool nuget:?package=Quartz.Dashboard&version=3.18.2
Quartz.Dashboard
Quartz.Dashboard is a Blazor-based dashboard for Quartz.NET that runs inside your ASP.NET Core app and accesses the scheduler in-process.
Warning: Quartz Dashboard is a work in progress and its API surface may change between releases. Supported target frameworks are .NET 8 and newer (Quartz 3.16 or later required).
Installation
dotnet add package Quartz.Dashboard
Basic setup
Configure Quartz and add the dashboard services:
services.AddQuartz(q =>
{
// configure jobs and triggers
});
services.AddQuartzDashboard();
services.AddQuartzHostedService(options => options.WaitForJobsToComplete = true);
Map the endpoints:
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseAntiforgery();
app.UseEndpoints(endpoints =>
{
endpoints.MapQuartzDashboard();
});
By default the dashboard UI is available at /quartz.
Documentation
📖 The full guide covers custom hosting paths, history plugins, production hardening and authorization, integrating with an existing Blazor Server app, and API-only project setup:
https://www.quartz-scheduler.net/documentation/quartz-3.x/packages/dashboard.html
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 was computed. 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. |
-
net8.0
- Microsoft.AspNetCore.SignalR.Client (>= 8.0.8)
- Quartz.AspNetCore (>= 3.18.2)
- Quartz.Serialization.SystemTextJson (>= 3.18.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Quartz.Dashboard:
| Repository | Stars |
|---|---|
|
foxminchan/BookWorm
The practical implementation of Aspire using Microservices, AI-Agents
|