/TinyCron

Cron for .NET

Primary LanguageC#Apache License 2.0Apache-2.0

TinyCron

TinyCron is cron for .NET

using System;
using TinyCron;

class Program
{
    static void Main(string[] args)
    {
        var tinyCron = new TinyCronApplication();
        var cronJob = new AnonymousTinyCronJob("* * * * *", () => Console.WriteLine("I'll run every minute!"));
        tinyCron.Register(cronJob);
        tinyCron.Start();
    }
}

more examples 🔎

Dependencies

  • .NET 4.5

Installation

License

TinyCron is licensed under the Apache 2.0 license

Credits

NCrontab by Atif Aziz licensed under the Apache 2.0 license