2019-07-06 18:36:10 +00:00
|
|
|
|
using Microsoft.AspNetCore;
|
2019-06-28 16:55:12 +00:00
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sample06
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Program
|
|
|
|
|
|
{
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
|
{
|
|
|
|
|
|
CreateWebHostBuilder(args).Build().Run();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
|
|
|
|
|
|
WebHost.CreateDefaultBuilder(args)
|
|
|
|
|
|
.ConfigureLogging(logging => logging.AddConsole())
|
|
|
|
|
|
.UseStartup<Startup>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|