Is there a way to put NLog.config information inside of my app.config file? This way I can have one config file instead of two. It could look like this:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="nlog" type="..." />
</configSections>
<nlog>
<targets>...</targets>
<rules>...</rules>
</nlog>
</configuration>
Please let me know if this is a duplicate.