# QuartzNetWebConsole **Repository Path**: anysharp/QuartzNetWebConsole ## Basic Information - **Project Name**: QuartzNetWebConsole - **Description**: 可嵌入的Quartz.Net Web控制台。 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-28 - **Last Updated**: 2024-10-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: 任务调度 ## README # Embeddable web admin for the Quartz.NET scheduler [Nuget package](https://www.nuget.org/packages/QuartzNetWebConsole/). [An old blog post that's still relevant about what the project does](http://bugsquash.blogspot.com/2010/06/embeddable-quartznet-web-consoles.html). To set this up in your ASP.NET Core (or any OWIN-compatible framework really), add to your Startup: ``` app.UseOwin(m => { m(Setup.Owin("/quartz/", () => Program.Scheduler)); Setup.Logger = new MemoryLogger(100, "/quartz/"); }); ``` This repo also has a [reference sample app](SampleApp).