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-05 12:00:21 +04:00
|
|
|
|
string[] path = Directory.GetCurrentDirectory().Split('\\');
|
|
|
|
|
string pathNeed = "";
|
|
|
|
|
for (int i = 0; i < path.Length - 3; i++)
|
|
|
|
|
{
|
|
|
|
|
pathNeed += path[i] + "\\";
|
|
|
|
|
}
|
|
|
|
|
services.AddSingleton<FormArmoredCarCollection>()
|
|
|
|
|
.AddLogging(option =>
|
|
|
|
|
{
|
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
|
option.AddSerilog(new LoggerConfiguration()
|
|
|
|
|
.ReadFrom.Configuration(new ConfigurationBuilder()
|
|
|
|
|
.AddJsonFile($"{pathNeed}serilog.json")
|
|
|
|
|
.Build())
|
|
|
|
|
.CreateLogger());
|
|
|
|
|
});
|
2024-02-21 16:18:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-05 12:00:21 +04:00
|
|
|
|
}
|
2024-02-21 16:18:32 +04:00
|
|
|
|
}
|