mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
26 lines
603 B
C#
26 lines
603 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.AspNetCore;
|
|||
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
using Microsoft.Extensions.Configuration;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|||
|
namespace netcore_mvc
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
BuildWebHost(args).Run();
|
|||
|
}
|
|||
|
|
|||
|
public static IWebHost BuildWebHost(string[] args) =>
|
|||
|
WebHost.CreateDefaultBuilder(args)
|
|||
|
.UseStartup<Startup>()
|
|||
|
.Build();
|
|||
|
}
|
|||
|
}
|