using System; using System.IO; using System.IO.Compression; using System.Linq; using System.Net; using System.Security.Cryptography; using System.Threading; using System.Windows.Forms; using UpToolLib; using UpToolLib.Tool; namespace Installer { internal static class Program { /// /// The main entry point for the application. /// [STAThread] private static void Main() { try { MutexLock.Lock(); Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new InstallerForm()); } finally { MutexLock.Unlock(); } } } }