Stop Autofac module registering already-registered components
builder.RegisterType(componentType)
.As(handlerInterfaces)
.PreserveExistingDefaults();
Will work.
builder.RegisterType(componentType)
.As(handlerInterfaces)
.PreserveExistingDefaults();
Will work.