I can\'t find documentation anywhere on the syntax for Quartz.NET configuration files. I\'d like to learn about
Configuring the service itself
There is no complete documentation for quartz.net, but you are free to write one and share. However you can have a look at the Java Quartz documentation:
http://www.quartz-scheduler.org/documentation/quartz-2.x/configuration/
90% of the configuration settings are equal e.g.:
quartz.scheduler.instanceName = DefaultQuartzScheduler
quartz.threadPool.type = Quartz.Simpl.SimpleThreadPool, Quartz
quartz.threadPool.threadCount = 10
quartz.threadPool.threadPriority = Normal
quartz.jobStore.type = Quartz.Simpl.RAMJobStore, Quartz
quartz.jobStore.misfireThreshold = 60000
In addition you can look at the source: https://github.com/quartznet/quartznet