up vote 0 down vote favorite
share [g+] share [fb]

I'd like to create a framework that uses IoC without needing any configuration:

So instead of (adjusted from http://www.castleproject.org/container/gettingstarted/part1/code.html):

IWindsorContainer container = new WindsorContainer();
container.AddComponent("someinterface", typeof(ISomeInterface));
ISomeInterface component = (ISomeInterface) container[typeof(ISomeInterface)];
component.DoIt();
container.Release(component);

The container.AddComponent method would not need to be called, as there would have been some initial step that did some 'auto wiring' by looking in a known directory for any dlls containing classes that implemented ISomeComponent and registered them with the WindsorContainer.

I can see that this would be possible to do from scratch, but ideally I'd like not to rewrite this code if there is an open source project out there that has already done it!

link|improve this question

Why do you want this? What's wrong with using the configuration file? This technique will be hard to maintain IMO. – Gerrie Schenck Feb 27 '09 at 11:03
Surely it is easier to maintain, as you don't have to keep your config files up to date. – thatismatt Feb 27 '09 at 12:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.