I am a novice with the use of Quartz.net, and my question is the following: I have created a WCF server that includes an interface with the operations that the scheduler can do, and a class that implements the interface in which is allocated the the constructor that instantiates the scheduler and the methods.
In other place, inside of the same project, I can create a library with the definition of a simple job:
public class MyJob : IJob
{
public virtual void Execute(IJobExecutionContext context)
{
// Body of the job
}
All works fine when I connect with a client, but I need to include jobs in a different way, including the .dll
dynamically in the quartz service folder. But I don't know how.
I have been searching for a solution, and I have found something in relation with System.Reflection
; but I don't know where I have to situate a possible code