19 lines
412 B
C#
19 lines
412 B
C#
|
using Microsoft.AspNetCore;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
|
||
|
namespace WebApplication2
|
||
|
{
|
||
|
public class Program
|
||
|
{
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
BuildWebHost(args).Run();
|
||
|
}
|
||
|
|
||
|
public static IWebHost BuildWebHost(string[] args) =>
|
||
|
WebHost.CreateDefaultBuilder(args)
|
||
|
.UseStartup<Startup>()
|
||
|
.Build();
|
||
|
}
|
||
|
}
|