update 20250224

This commit is contained in:
Stefan Hutter
2025-02-23 17:33:17 +01:00
parent 794e577f22
commit 0f76b2b376
121 changed files with 30641 additions and 110 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 ToolsDoksImportExport
{
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}