diff --git a/Program.cs b/Program.cs deleted file mode 100755 index c0e2bce..0000000 --- a/Program.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using Gtk; - -namespace Buypeeb { - class Program { - [STAThread] - public static void Main(string[] args) { - Application.Init(); - - var app = new Application("org.buypeeb.buypeeb", GLib.ApplicationFlags.None); - app.Register(GLib.Cancellable.Current); - - var win = new MainWindow(); - app.AddWindow(win); - - win.Show(); - Application.Run(); - } - } -}