2

我的 ASP.net web.config 中有一个部分用于企业库日志记录块。是否可以将日志记录配置分离到另一个配置文件中?我怎么做?

4

2 回答 2

2

Yes, it is possible -- in fact, separate config files for each app block was the only way that Enterprise Library 1.0 worked.

Check out this blog post from David Hayden -- he shows how to set up the configs for each application block in separate files.

于 2008-11-17T22:26:22.913 回答
2

Web.config 中的任何部分都可以存在于 Web.config 之外。只需添加一个configSource 属性并指定文件名。这是我们为一个项目所做的示例。

<configuration>
  <configSection>
    <section name="microMvc" type="MicroMvc.MvcSection" allowDefinition="MachineToApplication" restartOnExternalChanges="true" />
  </configSection>
  <microMvc configSource="micromvc.config" />
</configuration>
于 2008-12-16T17:56:27.487 回答