Windows Service中app.config中的自定义配置部分

本文关键字:自定义 配置部 config Service app Windows | 更新日期: 2023-09-27 18:15:05

我在web中添加了自定义配置部分。配置MVC Web项目,它工作得很好。我在Windows服务项目下的app.config中做了同样的事情,它正在抛出错误。

The type initializer for 'Quartz.Impl.StdSchedulerFactory' threw an exception

但是在删除自定义配置部分后,它可以正常工作,没有错误。

<configSections>
<section name="RegisterSchedule" type="Sample.Common.CustomConfig.RegisterScheduleConfig, Sample.Common.CustomConfig" />

  <RegisterSchedule>
    <Schedules>
      <Schedule Name="TestSchedule1" Value="test" IsEnabled="true" />
      <Schedule Name="TestSchedule2" Value="123" IsEnabled="true" />
    </Schedules>
 </RegisterSchedule>

Windows Service中app.config中的自定义配置部分

当我将<configSections>移动到configuration旁边的app.config的顶部时,它工作了