Programatically adding sections to the configuration read from app.config - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T18:22:37Zhttp://stackoverflow.com/feeds/question/618623http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/618623/programatically-adding-sections-to-the-configuration-read-from-app-config0Programatically adding sections to the configuration read from app.configJoda2009-03-06T12:06:08Z2009-03-06T12:18:07Z
<p>I am working on a component/assembly that is to be distributed to other developers and included in their systems.</p>
<p>In order to minimize the work they have to do, all configuration is done in a seperate file (my.config).</p>
<p>My current problem is that a library I am using requires configuration to be added to the app.config file of the application. I have no way of modifying this, so that it reads my custom config file.</p>
<p>Is there any way to add a section/setting to the current config, so that it behaves as if it was read from the app.config?</p>
<p>I can add to the app.config, so it must work at runtime only.</p>
<p>Thanks, Jonas</p>
http://stackoverflow.com/questions/618623/programatically-adding-sections-to-the-configuration-read-from-app-config/618639#6186392Answer by Assaf for Programatically adding sections to the configuration read from app.configAssaf2009-03-06T12:11:49Z2009-03-06T12:11:49Z<p>I don't think you can update the configuration without changing the underlying file. It's a read-only thing.</p>