Tool for creating custom configuration sections

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

Creating code for custom configuration sections is straightforward, but somewhat monotonous. Is there a good tool for creating custom configuration sections that generate classes?

Ideally, the tool will also consider sample XML sections built by hand and reversing them into classes. Fine tuning should be associated with the tool, since it cannot guess all aspects of use.

I am creating enough custom configuration sections for the components that this tool will be well used.

+8
code-generation configuration
source share
1 answer

How about a designer section configuration ?

Configuration Section Designer in Action

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

+6
source share

Source: https://habr.com/ru/post/650841/


All Articles