show/hide this revision's text 2 added 213 characters in body; edited tags

app.config configuration sections are nice, but I often need multiple configuration sets, but with small difference. what I want is:

  1. Have one section with default configuration (this one is created with the designer, and thus has the auto-generated strongly-typed accessors in the Settings class
  2. Another section with only the "new" items, and all other items get their values from the original section.

(note - it is also would be nice to place that "other section" in a separate file, but this is a different issue.)

Edit: the application is plain executable (or a service) - it is not a web service. Also, I know there is a "machine.config" to inherit from, but its too global: its for all apps together

show/hide this revision's text 1

How to do hierarchical configuration in .NET's app.config

app.config configuration sections are nice, but I often need multiple configuration sets, but with small difference. what I want is:

  1. Have one section with default configuration (this one is created with the designer, and thus has the auto-generated strongly-typed accessors in the Settings class
  2. Another section with only the "new" items, and all other items get their values from the original section.

(note - it is also would be nice to place that "other section" in a separate file, but this is a different issue.)