Is it possible to auto register in Castle Windsor based on naming convention?

Viewed 207
public interface IMySpecialService {}
public interface MySpecialService : IMySpecialService {}

Is it possible to register MySpecialService as the chosen implementation of IMySpecialService without having to specify details of either the interface or implementation? i.e. Can I configure Castle Windsor to use the interface name minus the I?

1 Answers
Related