IW4M-Admin/WebfrontCore/Program.cs
2018-04-08 01:44:42 -05:00

21 lines
482 B
C#

using System.IO;
using Microsoft.AspNetCore.Hosting;
namespace WebfrontCore
{
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
new WebHostBuilder()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseKestrel()
.UseStartup<Startup>()
.Build();
}
}