mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-25 02:58:45 +00:00
Initial commit
This commit is contained in:
17
Source/Examples/NetCoreSelfHost/Program.cs
Normal file
17
Source/Examples/NetCoreSelfHost/Program.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Quartzmin;
|
||||
using System.Threading;
|
||||
|
||||
namespace NetCoreSelfHost
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var scheduler = DemoScheduler.Create();
|
||||
scheduler.Start();
|
||||
|
||||
while (!scheduler.IsShutdown)
|
||||
Thread.Sleep(500);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user