2024-02-27 12:37:50 +04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
2024-02-13 20:31:10 +04:00
|
|
|
namespace ConfectioneryView
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2024-02-27 12:37:50 +04:00
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
2024-02-13 20:31:10 +04:00
|
|
|
/// <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.
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-02-27 12:37:50 +04:00
|
|
|
Application.Run(new FormComponent());
|
2024-02-13 20:31:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|