mirror of
https://github.com/fergalmoran/Quartzmin.git
synced 2025-12-22 17:37:51 +00:00
19 lines
403 B
C#
19 lines
403 B
C#
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();
|
|
}
|
|
}
|
|
}
|