I’m currently in process of selecting a framework for building a scheduling system.
It is quite simple (so i thought) it seems however that I can’t get some scenarios to work with Quartz.
- Every 4 weeks on Mon,Tue,Wed – been told that I can use cron to trigger every week and check somehow the counter – it doesnt seem very ideal.
- Day 3 of every 5 months – would it be (* * * 3 0/5 * *) ?
- The third Monday of every 3 months – I know I can use
Lfor last not sure how to dofirst, second, third, fourth/last
I have so far been happy with all my other scenarios and it seems that Quartz.NET is a way to go, I just have to make sure that all my scenarios are possible.
CronMaker looks like it may be able to help you out.