- Added plugin source code

- removed plugin dll
- Changed file structure
- Added readme
This commit is contained in:
2022-03-11 17:13:30 +01:00
parent 21f52871c2
commit 98119c56f4
460 changed files with 92059 additions and 98 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 App
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}