38 lines
1.2 KiB
C#
38 lines
1.2 KiB
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 GZTW.Pecklist
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
BuildWebHost(args).Run();
|
|
}
|
|
|
|
public static IWebHost BuildWebHost(string[] args) =>
|
|
WebHost.CreateDefaultBuilder(args)
|
|
.UseUrls("http://*:3000")
|
|
.CaptureStartupErrors(true)
|
|
.UseSetting("detailedErrors", "true")
|
|
.UseKestrel()
|
|
.UseContentRoot(System.IO.Directory.GetCurrentDirectory())
|
|
//.UseIISIntegration()
|
|
// .ConfigureLogging((hostingContext, logging) =>
|
|
// {
|
|
// logging.AddConfiguration(hostingContext.Configuration.GetSection("Logging"));
|
|
// logging.AddConsole();
|
|
// logging.AddDebug();
|
|
// })
|
|
.UseStartup<Startup>()
|
|
.Build();
|
|
}
|
|
}
|