Open guazilalala opened 5 years ago
Please try to exclude CrystalQuartz assemblies from the scan like this:
@this.GetExcutingAssemblies().Where(x => !x.FullName.StartsWith("CrystalQuartz"))
In general it's a good practice to scan only your internal assemblies (unless you really need all the external classes):
assemblies.Where(x => x.FullName.StartsWith("MyRootAssemblyPrefix"))
Unable to load one or more of the requested types. Method 'TriggerFired' in type 'CrystalQuartz.Core.Quartz2.Quartz2SchedulerEventSource' from assembly 'CrystalQuartz.AspNetCore, Version=6.8.1.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.