adding mono solution

This commit is contained in:
Luke Pulverenti
2013-09-24 17:06:21 -04:00
parent f176307e59
commit 0ab379e271
21 changed files with 428 additions and 154 deletions

View File

@@ -0,0 +1,16 @@
using System;
using Gtk;
namespace MediaBrowser.Server.Mono
{
class MainClass
{
public static void Main (string[] args)
{
Application.Init ();
MainWindow win = new MainWindow ();
win.Show ();
Application.Run ();
}
}
}