NCrontab icon indicating copy to clipboard operation
NCrontab copied to clipboard

Crontab for .NET

Results 26 NCrontab issues
Sort by recently updated
recently updated
newest added

Adding the follow most common cron expressions: ``` public const string Daily = "0 0 * * *"; public const string Hourly = "0 * * * *"; public const...

Hiya. Feel free to ignore this PR if it's not what you had in mind. For my uses, having to specify via an options file whether I want to include...

An example in the readme to illustrate the formating could be very usefull. thanks

This PR addresses #36 by adding an extension method that takes a sequence of `CrontabSchedule` instances and produces a single sequence of ordered and distinct occurrences from those schedules.

Here's my Blazor NCrontab tester project. Feel free to change, merge, remove as necessary and let me know if you need anything. Regarding hosting on GitHub pages, I have [sample...

This PR converts the WinForms app that allowed experimenting with crontab expressions and enumerating their occurrences to a portable browser-based version that uses Blazor WebAssembly.

Added overload more similar to common TryParse implementations

hello, right now, I need to call GetOccurences(reasonableStart, now).Last() for this it's simple enough, but it seems inefficient, since it needs to calculate all occurences between the two dates. and...

There is currently no way to check a `ContrabSchedule` object for equality against another schedule. It's also not possible to properly implement a custom `EqualityComparer` from the outside since the...

For some reason I cannot get this ? (Any Operator) to work. Is there a way to create the following cron using NCronTab? ? ?/15 7-22 * * * At...