Quartz.NET

官网

http://www.quartz-scheduler.net/

相关的 Log 说明

http://netcommon.sourceforge.net/docs/2.1.0/reference/html/index.html

懒惰的肥兔  (他写不少相关的文章,值得一读)

http://www.cnblogs.com/lzrabbit/archive/2012/04/15/2448326.html

Quartz.net  2.0 版本有个地方特别需要注意; 在 App.config 里的 factoryAdapter不再是Log4Net取而代之的是Log4Net1211;

    <logging>
      <factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4Net1211">
        <arg key="configType" value="INLINE"/>
      </factoryAdapter>
    </logging>
   // 串行执行的属性。
    [DisallowConcurrentExecution]
    public class Job1: IJob
原文地址:https://www.cnblogs.com/starluck/p/4005992.html