2017-08-23 13:31:58 -05:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-08-29 15:42:24 -05:00
|
|
|
using Microsoft.AspNetCore;
|
2017-08-23 13:31:58 -05:00
|
|
|
using Microsoft.AspNetCore.Hosting;
|
2017-08-29 15:42:24 -05:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2017-08-23 13:31:58 -05:00
|
|
|
|
2017-08-29 15:42:24 -05:00
|
|
|
namespace Sample
|
2017-08-23 13:31:58 -05:00
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
2019-03-04 16:58:35 -06:00
|
|
|
CreateWebHostBuilder(args).Build().Run();
|
2017-08-23 13:31:58 -05:00
|
|
|
}
|
2017-08-29 15:42:24 -05:00
|
|
|
|
2019-03-04 16:58:35 -06:00
|
|
|
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
|
2017-08-29 15:42:24 -05:00
|
|
|
WebHost.CreateDefaultBuilder(args)
|
2019-03-04 16:58:35 -06:00
|
|
|
.UseStartup<Startup>();
|
2017-08-23 13:31:58 -05:00
|
|
|
}
|
|
|
|
|
}
|