Separate configuration file for MS Enterprise Library - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:45:41Z http://stackoverflow.com/feeds/question/297121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/297121/separate-configuration-file-for-ms-enterprise-library 1 Separate configuration file for MS Enterprise Library Jack 2008-11-17T22:05:58Z 2008-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#297196 2 Answer by Guy Starbuck for Separate configuration file for MS Enterprise Library Guy Starbuck 2008-11-17T22:26:22Z 2008-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#372117 1 Answer by Brig Lamoreaux for Separate configuration file for MS Enterprise Library Brig Lamoreaux 2008-12-16T17:56:27Z 2008-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>&lt;configuration&gt; &lt;configSection&gt; &lt;section name="microMvc" type="MicroMvc.MvcSection" allowDefinition="MachineToApplication" restartOnExternalChanges="true" /&gt; &lt;/configSection&gt; &lt;microMvc configSource="micromvc.config" /&gt; &lt;/configuration&gt; </code></pre>