John K
John K

Reputation: 28897

Tool for generating custom configuration sections

We all live with the .NET configuration file XML format (e.g. Web.config, App.config, etc).

Creating the code for custom configuration sections is straight forward but somewhat monotonous. Is there a good tool to build custom configuration sections that generates the classes?

Ideally the tool would also look at sample XML sections built by hand and reverse engineer them into classes. Tweaking would need to be involved with the tool because it can't guess all aspects of usage.

I generate enough custom configuration sections for components that this tool would be well used.

Upvotes: 10

Views: 2715

Answers (1)

John Saunders
John Saunders

Reputation: 161791

How about a Configuration Section Designer?

Configuration Section Designer in Action

I have used this and customized it. It comes with full source code.

Upvotes: 6

Related Questions