This commit is contained in:
2018-02-25 02:53:18 +00:00
parent 952b61d1f8
commit 9dd6c1efa0
23 changed files with 390 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System;
using Eto.Forms;
using Eto.Drawing;
namespace exeinfogui.Desktop
{
class Program
{
[STAThread]
static void Main(string[] args)
{
new Application(Eto.Platform.Detect).Run(new MainForm());
}
}
}