using PSLauncher.Properties; using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace PSLauncher { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Settings.Default.PropertyChanged += Default_PropertyChanged; Application.Run(new LauncherForm()); } static void Default_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) { Settings.Default.Save(); } } }