Files
Rekordbox-Update-Disabler/Upmgr rekordbox/Program.cs
Vichingo455 913c457202
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
Add project files
2025-08-20 13:05:48 +02:00

23 lines
663 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Upmgr_rekordbox
{
internal static class Program
{
/// <summary>
/// Punto di ingresso principale dell'applicazione.
/// </summary>
[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);
}
}
}