Currently I'm doing this the old fashioned way!
var list =
AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(x => x.GetTypes())
.Where(t => typeof(IJob).IsAssignableFrom(t))
.ToList();
Is there a more "Quartz" way of doing this without manual reflection? I can't see anything about it in the docs or manually poking around namespaces.