2024-05-05 11:40:18 +04:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2024-04-19 19:56:36 +04:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using NLog.Extensions.Logging;
|
2024-05-05 11:40:18 +04:00
|
|
|
|
using Serilog;
|
2024-04-19 19:56:36 +04:00
|
|
|
|
|
2024-02-21 16:18:32 +04:00
|
|
|
|
namespace AntiAircraftGun
|
|
|
|
|
{
|
|
|
|
|
internal static class Program
|
|
|
|
|
{
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-05-05 12:00:21 +04:00
|
|
|
|
|
|
|
|
|
ServiceCollection services = new();
|
|
|
|
|
ConfigureServices(services);
|
|
|
|
|
using ServiceProvider serviceProvider = services.BuildServiceProvider();
|
|
|
|
|
Application.Run(serviceProvider.GetRequiredService<FormArmoredCarCollection>());
|
2024-04-19 19:56:36 +04:00
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> DI
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="services"></param>
|
2024-05-05 12:00:21 +04:00
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
2024-04-19 19:56:36 +04:00
|
|
|
|
{
|
2024-05-09 18:16:29 +04:00
|
|
|
|
services
|
|
|
|
|
.AddSingleton<FormArmoredCarCollection>()
|
|
|
|
|
.AddLogging(option =>
|
|
|
|
|
{
|
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
|
var config = new ConfigurationBuilder()
|
|
|
|
|
.AddJsonFile("serilogConfig.json", optional: false, reloadOnChange: true)
|
|
|
|
|
.Build();
|
|
|
|
|
option.AddSerilog(Log.Logger = new LoggerConfiguration()
|
|
|
|
|
.ReadFrom.Configuration(config)
|
|
|
|
|
.CreateLogger());
|
|
|
|
|
});
|
2024-02-21 16:18:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-09 18:16:29 +04:00
|
|
|
|
}
|