using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Upmgr_rekordbox { internal static class Program { /// /// Punto di ingresso principale dell'applicazione. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); MessageBox.Show("Rekordbox updates have been disabled by your system administrator.","Rekordbox Update Manager",MessageBoxButtons.OK,MessageBoxIcon.Information); } } }