Files
BunifuUiCrack/Main/Program.cs
YurZoRE f9a9595e6f Moved from modified DLL to License Generator implementation
Replaced the previous licensing mechanism (based on a modified DLL) with a full-featured License Generator that includes:
- Hardware ID detection
- File and registry-based license storage

The new Generator supports:
- Multiple product types (only UIWinForms Tested)
2025-06-06 03:44:34 +03:00

20 lines
471 B
C#

using System;
using System.Windows.Forms;
namespace BunifuLicenseGenerator
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}