removed the program.cs that i accidentally autogenerated

This commit is contained in:
Lynne Megido 2020-09-01 17:12:36 +10:00
parent 1de93e8dd0
commit 30978ee20f

View File

@ -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();
}
}
}