You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Serilog;
|
|
using Serilog.Events;
|
|
|
|
namespace WinIn.FasterZ.AuthSiteCenter.DbMigrator;
|
|
|
|
class Program
|
|
{
|
|
static async Task Main(string[] args)
|
|
{
|
|
Log.Logger = new LoggerConfiguration()
|
|
.MinimumLevel.Information()
|
|
.MinimumLevel.Override("Microsoft", LogEventLevel.Warning)
|
|
.MinimumLevel.Override("Volo.Abp", LogEventLevel.Warning)
|
|
#if DEBUG
|
|
.MinimumLevel.Override("WinIn.FasterZ.AuthSiteCenter", LogEventLevel.Debug)
|
|
#else
|
|
.MinimumLevel.Override("WinIn.FasterZ.AuthSiteCenter", LogEventLevel.Information)
|
|
#endif
|
|
.Enrich.FromLogContext()
|
|
.WriteTo.Async(c => c.File("Logs/logs.txt"))
|
|
.WriteTo.Async(c => c.Console())
|
|
.CreateLogger();
|
|
|
|
await CreateHostBuilder(args).RunConsoleAsync();
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
|
Host.CreateDefaultBuilder(args)
|
|
.AddAppSettingsSecretsJson()
|
|
.ConfigureLogging((context, logging) => logging.ClearProviders())
|
|
.ConfigureServices((hostContext, services) =>
|
|
{
|
|
services.AddHostedService<DbMigratorHostedService>();
|
|
});
|
|
}
|
|
|