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,18 @@
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Quartzmin.AspNetCore
{
class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args)
{
return WebHost.CreateDefaultBuilder(args).UseStartup<Startup>().Build();
}
}
}