63 lines
2.1 KiB
C#
63 lines
2.1 KiB
C#
using Autofac.Extensions.DependencyInjection;
|
||
using CC.Yi.DAL;
|
||
using Microsoft.AspNetCore.Hosting;
|
||
using Microsoft.Extensions.Configuration;
|
||
using Microsoft.Extensions.DependencyInjection;
|
||
using Microsoft.Extensions.Hosting;
|
||
using Microsoft.Extensions.Logging;
|
||
using NLog.Web;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace CC.Yi.API
|
||
{
|
||
public class Program
|
||
{
|
||
public static void Main(string[] args)
|
||
{
|
||
var logger = NLog.Web.NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();
|
||
try
|
||
{
|
||
logger.Debug("正在启动Yi意框架。。。。。。");
|
||
var host = CreateHostBuilder(args).Build();
|
||
var scope = host.Services.CreateScope();
|
||
var services = scope.ServiceProvider;
|
||
var context = services.GetRequiredService<Model.DataContext>();//获取服务
|
||
DbContentFactory.Initialize(context);//调用静态类方法注入
|
||
host.Run();
|
||
logger.Info("Yi意框架启动成功!");
|
||
}
|
||
catch (Exception exception)
|
||
{
|
||
//NLog: catch setup errors
|
||
logger.Error(exception, "Stopped program because of exception");
|
||
throw;
|
||
}
|
||
finally
|
||
{
|
||
// Ensure to flush and stop internal timers/threads before application-exit (Avoid segmentation fault on Linux)
|
||
NLog.LogManager.Shutdown();
|
||
}
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||
Host.CreateDefaultBuilder(args)
|
||
.ConfigureWebHostDefaults(webBuilder =>
|
||
{
|
||
webBuilder.UseStartup<Startup>();
|
||
}).UseServiceProviderFactory(new AutofacServiceProviderFactory())
|
||
.ConfigureLogging(logging =>
|
||
{
|
||
// logging.ClearProviders(); // 这个方法会清空所有控制台的输出
|
||
logging.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace);
|
||
}).UseNLog();//开启nlog日志输出
|
||
|
||
}
|
||
}
|