Skip to content

Releases: yisoft-dotnet/crontab

v1.3.2

27 Jun 07:51
Compare
Choose a tag to compare
Merge pull request #13 from yisoft-dotnet/dev

update versions

v1.3.1

23 May 07:19
Compare
Choose a tag to compare

add defer option in seconds. It is useful when the task is started for the first time.

sample:

public class TestScheduler
{
	// this task will begin execution after 100 seconds of startup
	[Cron("0/1 * * * * *", 100, CronStringFormat.WithSeconds)]
	public static void DeferTask1()
	{
		Debug.WriteLine($"Task..............5555_{DateTime.Now}");
	}
}

v1.2.0

10 May 06:42
Compare
Choose a tag to compare
Merge pull request #6 from yisoft/dev

update versions

v1.1.0

17 Apr 07:47
Compare
Choose a tag to compare

#1 add crontab task executor

v1.0.0

13 Apr 15:26
Compare
Choose a tag to compare
code init