WIP: a step to migrate (working on saves)

This commit is contained in:
2025-05-20 02:57:52 +03:00
parent f2b01d4a27
commit 4054003c29
9 changed files with 413 additions and 208 deletions

View File

@@ -0,0 +1,17 @@
namespace SavedFontsConverter
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}