Separate configuration file for MS Enterprise Library - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:45:41Zhttp://stackoverflow.com/feeds/question/297121http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/297121/separate-configuration-file-for-ms-enterprise-library1Separate configuration file for MS Enterprise LibraryJack2008-11-17T22:05:58Z2008-12-16T17:56:27Z
<p>I have a section on my ASP.net web.config for the Enterprise library logging block. Is it possible to separate the logging configuration into another configuration file? How do I do that?</p>
http://stackoverflow.com/questions/297121/separate-configuration-file-for-ms-enterprise-library/297196#2971962Answer by Guy Starbuck for Separate configuration file for MS Enterprise LibraryGuy Starbuck2008-11-17T22:26:22Z2008-11-17T22:26:22Z<p>Yes, it is possible -- in fact, separate config files for each app block was the only way that Enterprise Library 1.0 worked.</p>
<p>Check out <a href="http://www.pnpguidance.net/Post/EnterpriseLibraryConfigurationSeparateConfigurationFilesApplicationBlocks.aspx" rel="nofollow">this blog post</a> from David Hayden -- he shows how to set up the configs for each application block in separate files.</p>
http://stackoverflow.com/questions/297121/separate-configuration-file-for-ms-enterprise-library/372117#3721171Answer by Brig Lamoreaux for Separate configuration file for MS Enterprise LibraryBrig Lamoreaux2008-12-16T17:56:27Z2008-12-16T17:56:27Z<p>Any section in the Web.config can live outside of the Web.config. Just add a <a href="http://msdn.microsoft.com/en-us/library/system.configuration.sectioninformation.configsource.aspx" rel="nofollow">configSource attribute</a> and specify the filename. Here is an example of what we did for one project.</p>
<pre><code><configuration>
<configSection>
<section name="microMvc" type="MicroMvc.MvcSection" allowDefinition="MachineToApplication" restartOnExternalChanges="true" />
</configSection>
<microMvc configSource="micromvc.config" />
</configuration>
</code></pre>