-
Notifications
You must be signed in to change notification settings - Fork 9
Startup Configuration
Furkan Güngör edited this page Jun 13, 2021
·
1 revision
For the cron job you created, you must configure it in Startup.cs.
Do not worry. This configuration is pretty simple.
services.ApplyResulation<ConsoleCronJob>(options =>
{
options.CronExpression = "* * * * *";
options.TimeZoneInfo = TimeZoneInfo.Local;
});
Process completed. Now, your cron job will run when the cron expression value you specified comes.
Welcome to the EasyCronJob wiki!
Topics:
-
Getting Started
-
Integration
-
Other