Add project files
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
2025-08-20 13:05:48 +02:00
parent 299e116652
commit 913c457202
10 changed files with 386 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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);
}
}
}