namespace ASC.Notify { public static class Program { public async static Task Main(string[] args) { var host = CreateHostBuilder(args).Build(); await host.RunAsync(); } public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .UseSystemd() .UseWindowsService() .UseServiceProviderFactory(new AutofacServiceProviderFactory()) .ConfigureWebHostDefaults(webBuilder => webBuilder.UseStartup()) .ConfigureAppConfiguration((hostContext, config) => { var buided = config.Build(); var path = buided["pathToConf"]; if (!Path.IsPathRooted(path)) { path = Path.GetFullPath(CrossPlatform.PathCombine(hostContext.HostingEnvironment.ContentRootPath, path)); } config.SetBasePath(path); var env = hostContext.Configuration.GetValue("ENVIRONMENT", "Production"); config .AddJsonFile("appsettings.json") .AddJsonFile($"appsettings.{env}.json", true) .AddJsonFile($"appsettings.services.json", true) .AddJsonFile("storage.json") .AddJsonFile("notify.json") .AddJsonFile($"notify.{env}.json", true) .AddJsonFile("kafka.json") .AddJsonFile($"kafka.{env}.json", true) .AddJsonFile("redis.json") .AddJsonFile($"redis.{env}.json", true) .AddEnvironmentVariables() .AddCommandLine(args) .AddInMemoryCollection(new Dictionary { {"pathToConf", path } } ); }) .ConfigureServices((hostContext, services) => { services.AddMemoryCache(); var diHelper = new DIHelper(services); var redisConfiguration = hostContext.Configuration.GetSection("Redis").Get(); var kafkaConfiguration = hostContext.Configuration.GetSection("kafka").Get(); if (kafkaConfiguration != null) { diHelper.TryAdd(typeof(ICacheNotify<>), typeof(KafkaCache<>)); } else if (redisConfiguration != null) { diHelper.TryAdd(typeof(ICacheNotify<>), typeof(RedisCache<>)); services.AddStackExchangeRedisExtensions(redisConfiguration); } else { diHelper.TryAdd(typeof(ICacheNotify<>), typeof(MemoryCacheNotify<>)); } diHelper.RegisterProducts(hostContext.Configuration, hostContext.HostingEnvironment.ContentRootPath); services.Configure(hostContext.Configuration.GetSection("notify")); diHelper.TryAdd(); diHelper.TryAdd(); diHelper.TryAdd(); diHelper.TryAdd(); // fix private services.AddHostedService(); }) .ConfigureContainer((context, builder) => { builder.Register(context.Configuration); }) .ConfigureNLogLogging(); } }