I've got dependency injection working with Unity and it runs nicely but I want to reduce the amount of cruft in the app.config as it is getting huge.
This is an issue because the customer routinely 'cleans up' the config by removing comments etc and we end up with a few hundred lines of nasty XML without explanation.
So, is there a way to;
- Reduce the amount of clutter by using defaults?
- Move the configuration out to another .config file that will help isolate it?
I understand .Net 4.0 has some good stuff for reducing .config files, will this help Unity config though?
Thanks in advance,
Ryan