vote up 2 vote down star
4

Update: this question, including the title, was rephrased, see history for details

I know that the following App.config includes a external file:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings configSource="appSettings.config"/>
  <system.net>
    <connectionManagement>
      <add address="*" maxconnection="50"/>
    </connectionManagement>
  </system.net>
</configuration>

But I don't know how to move the system.net to the second file. Actually I haven't tried it, but I am almost certain that it will not work, and I want to know if there is an way for an App.config to include another App.config file by reference.

flag

Why would you split the config into 2 files instead of one then? – Richard L Jan 28 at 15:22
Because one is for the library and the other is for the project that uses the library. – Jader Dias Jan 28 at 15:32
dll share the apps .config, why do you need the system.net section in another file? – Adrian Jan 28 at 15:48
It is just a matter of avoiding duplication. I want to change the setting once in the DLL Project, and when I rebuild the other solutions that include the DLL Project, then the changes will happen without having to do the same changes in another App.config file. – Jader Dias Jan 28 at 15:53

3 Answers

vote up 2 vote down check

I think you just remove the configSource attributes and then include all the content within the <appSettings> and <connectionStrings> elements

link|flag
But I still need it to be 2 separate files, the first one referencing the second one who actually contains the configuration. – Jader Dias Jan 28 at 15:24
Q: "dll share the apps .config" A: Yes I know. Q: "why do you need the system.net section in another file?" A: That was just an example, for my full motivation see the newest comment I wrote to this question. – Jader Dias Jan 28 at 15:55
vote up 2 vote down

You should not put the system.net section inside the appSettings.config. The standard practice is one config node in a sub config file. I'm not even sure if it's possible to share the same file with different nodes.

You should create another file named perhaps system.net.config and place the entire body in there, the full

  <system.net>
    <connectionManagement>
      <add address="*" maxconnection="50"/>
    </connectionManagement>
  </system.net>

Then in the App.config you will update the system.net to be

<system.net configSource="system.net.config"/>
link|flag
vote up 2 vote down

I was able to get this to work using configSource

<configSections>
    <section name="Sites"
             type="Wap.Common.Configuration.SiteHandler, Wap.Common" />
</configSections>

<Sites configSource="Sites.Prod.config" />

and then in the external config file it needs to have the ?xml tag

<?xml version="1.0" encoding="utf-8" ?>
<Sites>
...
</Sites>

and then you need to set up the external config file to always copy to the output directory

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.