I'm moving some code from Castle 2.5.2 to 3.0, I have a set of predefined registrations (in my boot code) that does some stuff based on conventions such as:
container.Register
(
AllTypes.FromAssemblyInDirectory( new AssemblyFilter( "." ) )
.IncludeNonPublicTypes()
.Where( t => conventions.IsViewModel( t ) && !conventions.IsExcluded( t ) )
.WithService.Select( ( type, baseTypes ) => conventions.SelectViewModelContracts( type ) )
.Configure( r =>
{
r.Properties( PropertyFilter.IgnoreAll );
if( conventions.IsShellViewModel( r ) )
{
r.LifeStyle.Is( LifestyleType.Singleton );
}
else
{
r.LifeStyle.Is( LifestyleType.Transient );
}
} )
);
in Windsor 2.5.2 the ComponentRegistration class has a ServiceType property, in 3.0 there is a Services property but is "internal protected".
My conventions handling relies on the fact that I need to know which are the services.
How can I get that info?
.m