vote up 1 vote down star

I have a VB6 app which calls a .NET assembly, which references settings from the app.config file. By default, .NET looks for a config file named after the VB6 app. How can I redirect it to use a different config file name? This needs to become the default config file so that e.g. WCF settings are read from it.

flag

75% accept rate
Since there is already a system which defines the "default" configuration file, what are you trying to do that you need to change it? – Bryan Watts Jan 13 at 16:24
I don't want it to be named after the VB6 app. I have several of these and would like to avoid having one copy of the config file for each, as the settings are not really specific to each app but to the .NET assembly. – Ian Horwill Jan 13 at 16:26
2  
In that case, you probably don't need to be using App.config to solve your problem, as its purpose is per-application settings. If the settings are supposed to be the same for the assembly regardless of application, aren't those just hard-coded values? – Bryan Watts Jan 13 at 16:33

3 Answers

vote up 4 vote down check

You can't change it. Each AppDomain instance has a fixed app.config that is set via an AppDomainSetup instance when a new app domain is created. Although you can get the setup information via AppDomain.SetupInformation it has effectively become readonly at this point.

Given this, one option may be to create a new app domain from within your Main function and configure the domain to use the app.config you require.

link|flag
Thanks, that's what I did in the end. The main (.NET) app sets APPDOMAIN_MANAGER_TYPE and APPDOMAIN_MANAGER_ASM environment variables to cause a custom AppDomainManager to be used, which overrides InitializeNewDomain to set the AppDomainSetup.ConfigurationFile property to point to the shared .exe.config file. Easy when you know how! – Ian Horwill Jun 12 at 9:33
vote up 3 vote down

You can force the application to read a particular config file using

System.Configuration.ConfigurationManager.OpenExeConfiguration(PATH_TO_CONFIG);
link|flag
Thanks. I need this to become the "default" app.config file so that e.g. WCF settings are read from it. I'll update the question to be more specific. – Ian Horwill Jan 13 at 16:22
vote up 0 vote down

Consider putting your configuration in a XML serialized object.

link|flag

Your Answer

Get an OpenID
or

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