mirror of
https://github.com/claunia/libexeinfo.git
synced 2025-12-16 19:14:24 +00:00
15 lines
266 B
C#
15 lines
266 B
C#
using System;
|
|
using Eto.Forms;
|
|
using Eto.Drawing;
|
|
|
|
namespace iconviewer.Desktop
|
|
{
|
|
class Program
|
|
{
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
new Application(Eto.Platform.Detect).Run(new MainForm());
|
|
}
|
|
}
|
|
} |