In Quartz 1.0.x it was possible so set a MisfireInstruction on the trigger by simply setting it:
trigger.MisfireInstruction = MisfireInstruction.CronTrigger.DoNothing;
We upgraded the Quartz version to 2.3.2 and it's not possible to set it like this anymore because trigger.MisfireInstruction
has no setter anymore.
How is it possible to set the MisfireInstruction on a trigger now?
I tried to recreate the trigger with a TriggerBuilder like this:
trigger = trigger.GetTriggerBuilder()...
but I couldn't find a MisfireInstruction-Method on the TriggerBuilder too.
Thanks for any help