mirror of
https://github.com/fergalmoran/Quartzmin.git
synced 2025-12-26 11:29:01 +00:00
Initial commit
This commit is contained in:
18
Source/Examples/AspNetCoreHost/Program.cs
Normal file
18
Source/Examples/AspNetCoreHost/Program.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user