2020-10-21 11:05:17 +02:00
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2020-10-25 16:15:06 +01:00
|
|
|
using NLog;
|
|
|
|
using NLog.Web;
|
|
|
|
using System;
|
2020-10-21 11:05:17 +02:00
|
|
|
|
|
|
|
namespace Birdmap
|
|
|
|
{
|
|
|
|
public class Program
|
|
|
|
{
|
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
2020-10-25 16:15:06 +01:00
|
|
|
var logger = NLogBuilder.ConfigureNLog("NLog.config").GetCurrentClassLogger();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
logger.Debug("Main called...");
|
|
|
|
CreateHostBuilder(args).Build().Run();
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
logger.Error(ex, "Exception occurred in Main.");
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
LogManager.Shutdown();
|
|
|
|
}
|
2020-10-21 11:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
|
|
|
Host.CreateDefaultBuilder(args)
|
|
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
|
|
{
|
|
|
|
webBuilder.UseStartup<Startup>();
|
2020-10-25 16:15:06 +01:00
|
|
|
}).ConfigureLogging(logging =>
|
|
|
|
{
|
|
|
|
logging.ClearProviders();
|
|
|
|
logging.AddConsole();
|
|
|
|
logging.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace);
|
|
|
|
})
|
|
|
|
.UseNLog();
|
2020-10-21 11:05:17 +02:00
|
|
|
}
|
|
|
|
}
|