aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Program/Program.cs
diff options
context:
space:
mode:
authorRedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com>2012-08-04 16:54:00 -0700
committerRedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com>2012-08-04 16:54:00 -0700
commitbf0c6ec182134cb2b13ac8ffabc6e1d6397c61e6 (patch)
treeef8d212878deebb5001554f874f15a00b6ec6651 /MediaBrowser.Program/Program.cs
parent3dda1cfdbc7b19a6939b283a1eba026239443ba2 (diff)
Initial creation of the ServerApplication
Diffstat (limited to 'MediaBrowser.Program/Program.cs')
-rw-r--r--MediaBrowser.Program/Program.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/MediaBrowser.Program/Program.cs b/MediaBrowser.Program/Program.cs
deleted file mode 100644
index fff4c9f16..000000000
--- a/MediaBrowser.Program/Program.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using MediaBrowser.Controller;
-using MediaBrowser.Model.Progress;
-
-namespace MediaBrowser.Program
-{
- class Program
- {
- static void Main(string[] args)
- {
- LoadKernel();
- }
-
- private static void LoadKernel()
- {
- DateTime now = DateTime.Now;
-
- Console.WriteLine("Loading");
-
- Kernel kernel = new Kernel();
-
- Progress<TaskProgress> progress = new Progress<TaskProgress>();
-
- kernel.Init(progress);
-
- var time = DateTime.Now - now;
- Console.WriteLine("Done in " + time.TotalSeconds + " seconds");
-
- Console.WriteLine("Press Enter to quit.");
- Console.ReadLine();
-
- kernel.Dispose();
- }
- }
-}