Skip to content

rbwestmoreland/TinyCron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Cron for .NET

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages