2024-05-11 12:10:22 +04:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Serilog;
|
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
using System;
|
|
|
|
|
using NLog.Extensions.Logging;
|
|
|
|
|
|
2024-02-13 09:11:32 +04:00
|
|
|
|
namespace ProjectElectricLocomotive
|
|
|
|
|
{
|
|
|
|
|
internal static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
2024-05-11 12:10:22 +04:00
|
|
|
|
ServiceCollection services = new();
|
|
|
|
|
ConfigureServices(services);
|
2024-02-13 09:11:32 +04:00
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-05-11 12:10:22 +04:00
|
|
|
|
using ServiceProvider serviceProvider = services.BuildServiceProvider();
|
|
|
|
|
Application.Run(serviceProvider.GetRequiredService<FormLocomotiveCollection>());
|
2024-02-13 09:11:32 +04:00
|
|
|
|
}
|
2024-05-11 12:10:22 +04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> DI
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="services"></param>
|
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
string[] path = Directory.GetCurrentDirectory().Split('\\');
|
|
|
|
|
string pathNeed = "";
|
|
|
|
|
for (int i = 0; i < path.Length - 3; i++)
|
|
|
|
|
{
|
|
|
|
|
pathNeed += path[i] + "\\";
|
|
|
|
|
}
|
|
|
|
|
services.AddSingleton<FormLocomotiveCollection>().AddLogging(option =>
|
|
|
|
|
{
|
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
|
//option.AddNLog("nlog.config");
|
|
|
|
|
option.AddSerilog(new LoggerConfiguration()
|
|
|
|
|
.ReadFrom.Configuration(new ConfigurationBuilder()
|
|
|
|
|
.AddJsonFile($"{pathNeed}serilog.json").Build())
|
|
|
|
|
.CreateLogger());
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-02-13 09:11:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|