Add editor skeleton.

This commit is contained in:
2018-07-30 20:55:43 +01:00
parent 6ffcc1183c
commit 69d3991923
23 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using AppKit;
using Eto.Forms;
namespace CICMMetadataEditor.XamMac
{
static class MainClass
{
static void Main(string[] args)
{
new Application(Eto.Platforms.XamMac2).Run(new MainForm());
}
}
}