using HotelPms.SourceFactory.Util; namespace HotelPms.SourceFactory { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); EnvironmentSetting.Init(); Application.Run(new FormMain()); //Application.Run(new Form1()); } } }