Pibd-22_Presnyakova.V.V_Cat.../Catamaran/Program.cs

41 lines
1.2 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
2022-11-21 11:19:10 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
namespace Catamaran
{
internal static class Program
{
/// <summary>
2022-11-21 11:19:10 +04:00
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2022-12-03 20:28:56 +04:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2022-11-21 11:19:10 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
using (ServiceProvider serviceProvider = services.BuildServiceProvider())
{
Application.Run(serviceProvider.GetRequiredService<FormMapWithSetBoats>());
}
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddSingleton<FormMapWithSetBoats>()
.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
}
}
}