For example an answer to this question by Mark Seemann
was this:
container.Register(AllTypes.FromAssemblyInDirectory(new AssemblyFilter(folderPath)));
This would register all assemblies in a given directory, including 3rd party assemblies that I am not interested in.
I only want to register a list of assemblies in a directory, and the second part I am not sure how to do, is to apply my interceptors to the assemblies in that list.
So I am asking how would I do that?