예제 #1
0
파일: Program.cs 프로젝트: SAEONData/SAEIS
 public static void Main(string[] args)
 {
     SAEONLogs.CreateConfiguration().Initialize();
     try
     {
         CreateHostBuilder(args).Build().Run();
     }
     catch (Exception ex)
     {
         SAEONLogs.Exception(ex);
         throw;
     }
     finally
     {
         SAEONLogs.ShutDown();
     }
 }