2024-06-15 23:48:53 +04:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Serilog;
|
|
|
|
|
|
2024-06-12 12:48:26 +04:00
|
|
|
|
namespace ProjectCruiser
|
|
|
|
|
{
|
|
|
|
|
internal static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2024-06-15 23:48:53 +04:00
|
|
|
|
/// The main entry point for the application.
|
2024-06-12 12:48:26 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
2024-06-15 23:48:53 +04:00
|
|
|
|
|
2024-06-12 12:48:26 +04:00
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-06-15 23:48:53 +04:00
|
|
|
|
ServiceCollection services = new();
|
|
|
|
|
ConfigureServices(services);
|
|
|
|
|
|
|
|
|
|
using ServiceProvider serviceProvider = services.BuildServiceProvider();
|
|
|
|
|
Application.Run(serviceProvider.GetRequiredService<ServiceForm2>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> DI
|
|
|
|
|
/// <param name="services"></param>
|
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
services.AddSingleton<ServiceForm2>().AddLogging(option =>
|
|
|
|
|
{
|
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
|
// [*] option.AddSerilog("serilog.config");
|
|
|
|
|
option.AddSerilog("serilog.config");
|
|
|
|
|
|
|
|
|
|
// instead of :
|
|
|
|
|
// option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
|
// option.AddNLog("nlog.config");
|
|
|
|
|
});
|
2024-06-12 12:48:26 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|