c# - Updated Castle to 3.2.1 from 3.0.0 now I cant use FirstNonGenericCoreInterface -
After I upgraded to 3.2.1 Castle I think I can not find the right replacement for the FirstNonGenericCoreInterface
My code
container.Register (AllTypes .FromAssemblyNamed ("MySolution.Tasks") .Innamespace ("MySolution.Tasks") .WithService.FirstNonGenericCoreInterface ("MySolution.Domain" ));
This method is not obsolete and which method I can not use it
Does anybody know what I should use instead?
If I'm not mistaken, FirstNonGenericCoreInterface is an intense architecture extension method.
WithService.DefaultInterfaces () does that, then what should you do with your implementation class name interface? More information is available at Castle Windsor Wiki
Comments
Post a Comment