Search code examples
.net.net-corecron

.Net Parsing Cron expression with 7 fields


I'm using this jquery plugin in my frontend in order to create a cron expression. It creates expressions like "0 0/20 * * * ? *".

I've tried a couple of packages in .net core (NCrontab and Cronos) but both of them don't recognize a seven field cron expression, I've also checked Quartz.Net docs and it does not support year field

Is there any package that can parse this expression? I've just have to get the next occurrence of the expression.

Thanks in advance.


Solution

  • Quartz.NET is solving this parsing as I`ve seen in this post Thanks.