I recently found myself in the need of a more granular filter on which handlers where registered with 'AutoRegisterHandlersFromAssembly', so I created an overload like so:
public static IServiceCollection AutoRegisterHandlersFromAssemblyOf<THandler>(this IServiceCollection services, Func<Type, bool> predicate = null)
Is this something you would like a PR on?