Initial commit

This commit is contained in:
Ján Lučanský
2018-12-28 19:37:16 +01:00
parent 15811b5849
commit 6b2f18bfb4
203 changed files with 17978 additions and 0 deletions

View 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);
}
}
}