vote up 2 vote down star

I have two applications one a console application and the other an ASP.NET app. They both need to know the same appSettings and connectionStrings. So ideally I would like to use the configSource property of app.config/web.config files to point that to a central location. For example

<connectionStrings configSource="D:\connectionStrings.config"/>
<appSettings configSource="D:\appSettings.config"/>

That however fails with an error:

The configSource attribute is invalid.: The configSource 'D:\appSettings.config' is invalid. It must refer to a file in the same directory or in a subdirectory as the configuration file.

Is there anyway to still use the configuration managers appSettings/connectionStrings and get the values from an external location?
I'm happy with having to add code to do it, but I don't want to have to replace the entire configuration manager system.

flag

5 Answers

vote up 1 vote down check

Another solution is simply to add the configuration file in all your projects as a link instead of actually copying the file to your projects. Then set the "Build Action" of the file to "Content" and "Copy to Output Directory" to "Copy if newer" and when you compile the project you will have the file in the output directory.

To add the file as a link choose "Add as link" in the "Add Existing Item" dialog.

link|flag
nice - much easier for people to understand than my way – Robert MacLean Mar 30 at 7:24
vote up 1 vote down

You can place both settings in the machine.config and then they are available for all you applications on the server.

link|flag
It's an option but I don't want (need) the settings available to other applications on the machine. Worry is the connection strings, they have pretty generic names which may conflict with other applications. – Robert MacLean Feb 20 at 11:14
vote up 1 vote down

It seems that's that is the way it is. configSource must be in the same folder or deeper.

You could, although I'm not sure you should, use an NTFS hardlink. [mad grin]

link|flag
+1 for out of the box thinking that solves it partially ;) – Robert MacLean Feb 20 at 13:18
vote up 0 vote down

You can load configuration from an arbitrary location, but it won't be available via the static properties of ConfigurationManager:

Configuration myConfig = ConfigurationManager.OpenExeConfiguration(path)

(There is an overload that allows multuple files to be specified, to support default/user-roaming/user-local hierarchy.)

Losing the static properties means all the code needs to be aware of the different configuration.

link|flag
This requires that the entire config file be loaded. I only need the appSettings & connectionStrings to be the same, the rest of the file is different for each app so it doesn't solve the issue. – Robert MacLean Feb 20 at 11:19
The whole config is loaded by the normal (static) properties anyway so this makes no real difference. – Richard Feb 20 at 11:33
Also, you could just use your own XML format and add its name to the applications' configuration files and read it directly. – Richard Feb 20 at 12:02
vote up 0 vote down

The solution I found worked best was to put the "shared" config files in a central files and then use a pre-build event in Visual Studio to copy them to a relative folder of each project which needed it.

link|flag

Your Answer

Get an OpenID
or

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