app.config configuration sections are nice, but I often need multiple configuration sets, but with small difference. what I want is:
- 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
- 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