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)
This commit is contained in:
YurZoRE
2025-06-06 03:44:34 +03:00
committed by GitHub
parent 98ee54d179
commit f9a9595e6f
12 changed files with 1204 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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());
}
}
}