Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
328 views

How To Get Automatic Registration With Castle Windsor

I recently read Ayende's blog post on automatic registration working with XML Configuration. I would like to do exactly what he does, but his code snippet doesn't work for me. The Register method ...
2
votes
0answers
61 views

StructureMap RegistrationConvention for decorator pattern

I'm using the decorator pattern to implement caching for my Repositories as such: IFooRepository() IFooRepository FooRepository() IFooRepository CachedFooRepository(IFooRepository fooRepository) ...
2
votes
1answer
151 views

Castle Windsor: Find an implementing assembly and used it

How do I tell castle to pick up an interface implementation from the assemblies in the executing directory. E.g. How do I tell castle to find an implementation for ILog and then If I drop log4net ...
1
vote
2answers
97 views

Unity.AutoRegistration not auto-registering

I'm trying to use Unity.AutoRegistration to auto wire my interfaces to the implementations. My configuration looks like this: public static class UnityConfigurator { public static UnityContainer ...
1
vote
1answer
433 views

castle windsor auto registration from two different assembly?

container.Register( AllTypes.Pick().FromAssembly(typeof (UserRepository).Assembly) .WithService.FirstInterface()); Currently the code above will work fine if the interface ...
0
votes
1answer
46 views

Can you add a dependency to a Castle component that was auto-registered?

I generally use StructureMap, but on a current project I'm using Castle Windsor (2.1). I've found some code to auto-register types and interfaces: ...