Cronos
Cronos copied to clipboard
A fully-featured .NET library for working with Cron expressions. Built with time zones in mind and intuitively handles daylight saving time transitions
0 0 15,L * ? should produce the 15th of the month or the Last day of the month. Instead it complains about the L not being a number. Am...
Hi! I am trying to familiarize myself with the scenarios in which the `GetNextOccurrence` can return a `DateTime?` with `null` value, and I have a hard time understanding the logic...
hi, I am getting error when I am setting CronExpression for month. Error Message: Invalid value '2376995117.7807' for parameter 'interval'.' // Cron setting services.AddCronJob(c => { c.TimeZoneInfo = TimeZoneInfo.Local; c.CronExpression...
Hi! Could be me misunderstanding something, but im getting different results with the following call: DateTime startTime = {'5/20/2022 12:00:00 AM' }; //obv as a DateTime object DateTime endTime= {'5/31/2022...
My users have just asked if they can change the current schedule of every 30 mins between 10am and 5pm to also include 5pm. I can't see a way of...
When cron expression is set to run job at every 30+ mints, for example "*/40 * * * *", it shows next occurrences as 8/6/2021 3:40:00 AM 8/6/2021 4:00:00 AM...
Would you please consider returning the return the DateTime when a task would have been due going back in time. I am currently using the real hack ``` _expression.GetOccurrences(scheduled.AddDays(-60), scheduled,...
Hi. I have a problem getting next occurrence time or i just miss something in Cronos documentation. Problem: User can set scheduler, which is done with the cron expression. User...
Hi, I would like to ask if there is a plan to support multple day of week specifiers. For example this cron expression is currenlty not supported: 0 0 11...