vote up 1 vote down star

Is there any way that I could specify at runtime the configuration file I would like to use (other than App.config)? For example I would like to read a first argument from a command line that will be a path to the application's config and I would like my application to refer to it when I use ConfigurationManager.AppSettings (It's probably impossible but still it's worth asking).
I did find this piece of code:

System.Configuration.Configuration config
    = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
        config.AppSettings.File = myRuntimeConfigFilePath;
        config.Save(ConfigurationSaveMode.Modified);
        ConfigurationManager.RefreshSection("appSettings");

It works, but it overrides the original App.config's AppSettings section and my application isn't supposed to write anything.

flag

74% accept rate

4 Answers

vote up 2 vote down check

I found this and it works. "path" is a path to configuration file.

AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", path);
link|flag
vote up 1 vote down

Not directly.

Indirectly, you could:

  • spin up a second AppDomain, specify the config-file for that (AppDomainSetup.ConfigurationFile), and execute the code in the app domain
  • have two exes; the first (foo.exe) simply copies the config (into bar.exe.config) and shells the 2nd exe (bar.exe) [warning: thread race]
link|flag
what do you mean by "execute code in the app domain"? – agnieszka Feb 10 at 11:30
That is a big topic... basically, in .NET you have a level of abstraction inside a Process - the AppDomain. See msdn: msdn.microsoft.com/en-us/library/… – Marc Gravell Feb 10 at 11:45
vote up 0 vote down

Another solution is to refactor and create your own ConfigurationRepository. Then you can change runtime what specific repository implementation you will use. F.eks AppConfigRepository:ConfigurationRespository will just be a facade for the old "ConfigurationManager.AppSettings["key"]"

link|flag
I already know about it but i'm looking for something simpler so that I don't reinvent the wheel (if it exists ;)) – agnieszka Feb 10 at 11:40
vote up 0 vote down

If you're using log4net you can specify your configuration file in the AssemblyInfo.cs

link|flag

Your Answer

Get an OpenID
or

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