HR-Collector/HRServer-Exporter/Installer/Program.cs
2024-12-31 16:35:06 +01:00

17 lines
No EOL
497 B
C#

namespace Installer
{
internal static class Program
{
/// <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();
Application.Run(new FRMInstaller());
}
}
}