2022-12-23 00:48:39 +04:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using Serilog;
|
2022-11-13 20:39:23 +04:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2022-12-23 00:48:39 +04:00
|
|
|
using System.IO;
|
2022-11-13 20:39:23 +04:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
namespace WinFormsApp1
|
|
|
|
{
|
|
|
|
static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
2022-12-23 00:48:39 +04:00
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
|
|
|
var services = new ServiceCollection();
|
|
|
|
ConfigureServices(services);
|
|
|
|
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
|
|
|
|
{
|
|
|
|
Application.Run(serviceProvider.GetRequiredService<FormMapWithSetTraktor>());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddSingleton<FormMapWithSetTraktor>()
|
|
|
|
.AddLogging(option =>
|
|
|
|
{
|
|
|
|
var configuration = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile(path: "appsettings.json").Build();
|
|
|
|
|
|
|
|
var logger = new LoggerConfiguration()
|
|
|
|
.ReadFrom.Configuration(configuration)
|
|
|
|
.CreateLogger();
|
|
|
|
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
option.AddSerilog(logger);
|
|
|
|
});
|
2022-11-13 20:39:23 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|