How to do hierarchical configuration in .NET's app.config - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:09:07Z http://stackoverflow.com/feeds/question/288191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/288191/how-to-do-hierarchical-configuration-in-nets-app-config 3 How to do hierarchical configuration in .NET's app.config drortirosh 2008-11-13T20:35:39Z 2008-11-14T12:20:06Z <p>app.config configuration sections are nice, but I often need multiple configuration sets, but with small difference. what I want is:</p> <ol> <li>Have one section with default configuration (this one is created with the designer, and thus has the auto-generated strongly-typed accessors in the Settings class</li> <li>Another section with only the "new" items, and all other items get their values from the original section.</li> </ol> <p>(note - it is also would be nice to place that "other section" in a separate file, but this is a different issue.)</p> <p><strong>Edit</strong>: the application is plain executable (or a service) - it is not a web service. Also, I know there is a "machine.config" to inherit from, but its too global: its for all apps together</p> http://stackoverflow.com/questions/288191/how-to-do-hierarchical-configuration-in-nets-app-config/288243#288243 1 Answer by Brody for How to do hierarchical configuration in .NET's app.config Brody 2008-11-13T20:54:34Z 2008-11-13T20:54:34Z <p>I think you'd have to use a custom handler to manage this.</p> <p>The second part is easy as you can use an configSource Attribute in the original config file to point to a file that contains the xml source.</p> <pre><code>&lt;system.serviceModel&gt; &lt;diagnostics&gt; &lt;messageLogging logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" /&gt; &lt;/diagnostics&gt; &lt;bindings configSource="web.shared.bindings.config" &gt;&lt;/bindings&gt; &lt;client configSource="web.shared.client.config" &gt;&lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p>Here is how we link parts of the Service.ServiceModel XML into our Web Config so we can keep them seperate and easily edited.</p>