How to do hierarchical configuration in .NET's app.config - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:09:07Zhttp://stackoverflow.com/feeds/question/288191http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288191/how-to-do-hierarchical-configuration-in-nets-app-config3How to do hierarchical configuration in .NET's app.configdrortirosh2008-11-13T20:35:39Z2008-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#2882431Answer by Brody for How to do hierarchical configuration in .NET's app.configBrody2008-11-13T20:54:34Z2008-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><system.serviceModel>
<diagnostics>
<messageLogging logMalformedMessages="true" logMessagesAtServiceLevel="true"
logMessagesAtTransportLevel="true" />
</diagnostics>
<bindings configSource="web.shared.bindings.config" ></bindings>
<client configSource="web.shared.client.config" ></client>
</system.serviceModel>
</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>