If you are already using Unity as a part of your project, is there any sense in bothering with writing traditional configuration classes?
Doing so seems like it's extra work, but the positives would be more domain specific XML tag names and more concise XML. But then the question becomes when you draw the line between the two and consistency as well.
In the past, when using Spring.NET for IoC, I've used a mix of the two, but I'm wondering if doing so is just reducing the level of consistency in configuration. Certainly, if you are not already using the libraries for IoC/DI, it seems like overkill to use them simply for runtime configuration purposes, but if you are, what approach would you take?
