> Yes, but I can have the app configs defined like this: > > <!-- Dll1.extra.config --> > <appSettings> > <add key="key1" value="value1"/> > </appSettings> > > <!-- Dll2.extra.config --> > <appSettings file="Dll1.extra.config"> > <add key="key2" value="value2"/> > </appSettings> > > and > > <!-- App.exe.config --> > <appSettings file="Dll2.extra.config"> > <add key="key3" value="value3"/> > </appSettings> > > Can't I? I don't think there is a limitation on how many > "includes" you have > in you "appSettings" section.
No - the file attribute is only supported on the topmost config file. If you try the above, you'll see that you get a configuration exception. -Mike Bear Canyon Consulting LLC http://www.bearcanyon.com http://www.pluralsight.com/mike =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com
