NHSE/NHSE.WinForms/Program.cs
2020-03-27 17:54:17 -07:00

23 lines
531 B
C#

using System;
using System.Windows.Forms;
namespace NHSE.WinForms
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
#if NETCOREAPP
Application.SetHighDpiMode(HighDpiMode.SystemAware);
#endif
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}