Hangfire with dynamic jobs - "Can not find the target method."

I want to use Hangfire to schedule jobs created in assemblies not referenced by the client or server but instead loaded dynamically via reflection. The intent is to be able to create and deploy new job assemblies at any time to a common place and be able to load those jobs based on database configuration and reflection. This means the dashboard may not have a reference to the assembly containing the job.

Is there anything that can be done to display something other than “Can not find the target method” for these jobs when the dashboard doesn’t have a reference to the assembly?

I have the similar problem where I simply used the example code in my asp.net project and yet nothing happens.

Did you ever find a solution?