有没有办法将 NLog.config 信息放入我的 app.config 文件中?这样我就可以拥有一个配置文件而不是两个。它可能看起来像这样:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="nlog" type="..." />
</configSections>
<nlog>
<targets>...</targets>
<rules>...</rules>
</nlog>
</configuration>
请让我知道这是否是重复的。