Quartz.net e Common.Logging - Usando o Log4Net

Estou usando o Quartz.net dentro de um serviço do Windows. Atualmente, o gatilho não está disparando - eu gostaria de usar o log para descobrir o porquê.

Eu editei meu arquivo de configuração para o serviço windows:

<configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />

    <sectionGroup name="common">
      <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
    </sectionGroup>
</configSections>

<appSettings>
    <!--specific win service settings here-->
</appSettings>

<common>
    <logging>
        <factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, Common.Logging.Log4Net">
            <arg key="configType" value="INLINE"/>
            <arg key="configFile" value="c:\sched.log"/>
            <arg key="level" value="INFO" />
        </factoryAdapter>
    </logging>
</common>

<log4net>
    <appender name="EventLogAppender" type="log4net.Appender.EventLogAppender">
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%d [%t] %-5p %l - %m%n" />
      </layout>
    </appender>
    <root>
      <level value="INFO" />
      <appender-ref ref="EventLogAppender" />
    </root>
</log4net>

Minha estrutura de arquivos é a seguinte:

C: \ CompanyName - diretório raiz para todos os projetos
C: \ CompanyName \ build \ bin - Diretório de saída para todos os projetos / bibliotecas de classes na minha solução
C: \ CompanyName \ lib - Onde binários / dlls de terceiros são colocados

No meu projeto de serviço do Windows, tenho uma referência ao Quartz (na pasta C: \ CompanyName \ lib)

Também adicionei uma referência ao Common.Logging.Log4net.dll

Ao testar meu aplicativo, recebo o seguinte erro:

Não foi possível carregar o arquivo ou assembly 'Common.Logging, Versão = 2.0.0.0, Culture = neutral, PublicKeyToken = af08829b84f0328e' ou uma de suas dependências. A definição do manifesto da montagem localizada não corresponde à referência da montagem. (Exceção de HRESULT: 0x80131040) ":" Common.Logging, versão = 2.0.0.0, Culture = neutral, PublicKeyToken = af08829b84f0328e

questionAnswers(2)

yourAnswerToTheQuestion