2023-12-06 09:33:39 +04:00
|
|
|
using Microsoft.Extensions.Configuration;
|
2023-11-28 17:17:38 +04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2023-12-06 09:33:39 +04:00
|
|
|
using Serilog;
|
2023-11-28 17:17:38 +04:00
|
|
|
|
2023-10-10 19:30:57 +04:00
|
|
|
namespace ProjectElectricLocomotive
|
2023-09-27 09:51:02 +04:00
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
2023-12-06 09:33:39 +04:00
|
|
|
|
2023-09-27 09:51:02 +04:00
|
|
|
ApplicationConfiguration.Initialize();
|
2023-11-28 17:17:38 +04:00
|
|
|
var services = new ServiceCollection();
|
|
|
|
ConfigureServices(services);
|
|
|
|
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
|
|
|
|
{
|
|
|
|
Application.Run(serviceProvider.GetRequiredService<FormLocomotiveCollection>());
|
|
|
|
}
|
2023-12-06 09:33:39 +04:00
|
|
|
|
2023-11-28 17:17:38 +04:00
|
|
|
}
|
2023-12-06 09:33:39 +04:00
|
|
|
|
2023-11-28 17:17:38 +04:00
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddSingleton<FormLocomotiveCollection>().AddLogging(option =>
|
|
|
|
{
|
2023-12-06 09:33:39 +04:00
|
|
|
string[] path = Directory.GetCurrentDirectory().Split('\\');
|
|
|
|
string pathNeed = "";
|
|
|
|
for (int i = 0; i < path.Length - 3; i++)
|
|
|
|
{
|
|
|
|
pathNeed += path[i] + "\\";
|
|
|
|
}
|
|
|
|
var configuration = new ConfigurationBuilder().SetBasePath(
|
|
|
|
Directory.GetCurrentDirectory()).AddJsonFile(
|
|
|
|
path: $"{pathNeed}serilog.json", optional: false, reloadOnChange: true
|
|
|
|
).Build();
|
|
|
|
var logger = new LoggerConfiguration().ReadFrom.Configuration(configuration).CreateLogger();
|
|
|
|
|
2023-11-28 17:17:38 +04:00
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
2023-12-06 09:33:39 +04:00
|
|
|
option.AddSerilog(logger);
|
2023-11-28 17:17:38 +04:00
|
|
|
});
|
2023-09-27 09:51:02 +04:00
|
|
|
}
|
2023-12-06 09:33:39 +04:00
|
|
|
|
2023-09-27 09:51:02 +04:00
|
|
|
}
|
|
|
|
}
|