19 lines
350 B
C#
19 lines
350 B
C#
|
using System;
|
|||
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
|
|||
|
namespace aspnetcoreapp
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
var host = new WebHostBuilder()
|
|||
|
.UseKestrel()
|
|||
|
.UseStartup<Startup>()
|
|||
|
.Build();
|
|||
|
|
|||
|
host.Run();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|