vote up 0 vote down star

In my app.config i got something like:

<appSettings configSource="AppSettings.config"/>

I would have expected the application to read the settings dynamically from AppSettings.config but i doesn't...

Am i wrong here?

flag

77% accept rate
What do you mean by "dynamically" here? Do you expect to be able to change the file while the code is running and see the changes picked up next time you ask for a setting? – Jon Skeet Sep 21 at 15:15
I don't think the OP meant "dynamically" to mean that the application would pick up changes to the file while the app is running. I think they are simply confused as to why their external config settings are not being picked up which is explained by my answer below... – Andrew Hare Sep 21 at 15:21

3 Answers

vote up 1 vote down check

app.config is read once at startup. Re-reading each time a config value is referenced could be a big performance hit. Besides, there are some entries like dependencies that it wouldn't make sense to change at runtime.

link|flag
vote up 0 vote down

The Setting is correct. But as ctford said, this is only read once, when the application starts up... Is the file in the same folder as the application executable is being loaded from ? Also, in Visual Studio, where you have the file stored, right click on it, and verify that you have the Visual Studio File property "Copy to Output Directory" set appropriately. For files like this, the default is "Do Not Copy" and then the file will, duh, not be there when the app runs and looks for it...

link|flag
vote up 0 vote down

You are using the wrong attribute, use the file attribute to reference an external configuration file:

<appSettings file="AppSettings.config"/>
link|flag
ok, iam trying this.. but i can't use file for the connectionStrings.. what di i do with them? – David Sep 21 at 15:21
@Andrew, why do you think configSource is the wrong attribute? Has it been deprecated or something? – Charles Bretana Sep 21 at 17:38

Your Answer

Get an OpenID
or

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