This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/CICMMetadataEditor/CICMMetadataEditor.Desktop/Program.cs

15 lines
274 B
C#
Raw Normal View History

2018-07-30 20:55:43 +01:00
using System;
using Eto.Forms;
using Eto.Drawing;
namespace CICMMetadataEditor.Desktop
{
class Program
{
[STAThread]
static void Main(string[] args)
{
new Application(Eto.Platform.Detect).Run(new MainForm());
}
}
}