mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
51 lines
2.4 KiB
C#
51 lines
2.4 KiB
C#
using System;
|
|
using Autofac.Extensions.DependencyInjection;
|
|
using Infrastructure;
|
|
using Infrastructure.Helpers;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace OpenAuth.WebApi
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Console.WriteLine($@"
|
|
____ _ _ _ _ _
|
|
/ __ \ /\ | | | | | \ | | | |
|
|
| | | |_ __ ___ _ __ / \ _ _| |_| |__ | \| | ___| |_
|
|
| | | | '_ \ / _ \ '_ \ / /\ \| | | | __| '_ \ | . ` |/ _ \ __|
|
|
| |__| | |_) | __/ | | |/ ____ \ |_| | |_| | | |_| |\ | __/ |_
|
|
\____/| .__/ \___|_| |_/_/ \_\__,_|\__|_| |_(_)_| \_|\___|\__|
|
|
| |
|
|
|_|
|
|
-------------------------------------------------------------------
|
|
Author : yubaolee
|
|
Repository : https://gitee.com/dotnetchina/OpenAuth.Net
|
|
-------------------------------------------------------------------
|
|
Start Time:{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}");
|
|
CreateHostBuilder(args).Build().Run();
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
|
Host.CreateDefaultBuilder(args)
|
|
.ConfigureLogging((hostingContext, logging) =>
|
|
{
|
|
logging.ClearProviders(); //去掉默认的日志
|
|
// logging.AddLog4Net();
|
|
})
|
|
.UseServiceProviderFactory(
|
|
new AutofacServiceProviderFactory()) //将默认ServiceProviderFactory指定为AutofacServiceProviderFactory
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
var configuration = ConfigHelper.GetConfigRoot();
|
|
var httpHost = configuration["AppSetting:HttpHost"];
|
|
|
|
webBuilder.UseUrls(httpHost).UseStartup<Startup>();
|
|
Console.WriteLine($"启动成功,接口访问地址:{httpHost}/swagger/index.html");
|
|
});
|
|
}
|
|
} |