diff options
| author | RedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com> | 2012-08-04 16:54:00 -0700 |
|---|---|---|
| committer | RedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com> | 2012-08-04 16:54:00 -0700 |
| commit | bf0c6ec182134cb2b13ac8ffabc6e1d6397c61e6 (patch) | |
| tree | ef8d212878deebb5001554f874f15a00b6ec6651 /MediaBrowser.Program/Program.cs | |
| parent | 3dda1cfdbc7b19a6939b283a1eba026239443ba2 (diff) | |
Initial creation of the ServerApplication
Diffstat (limited to 'MediaBrowser.Program/Program.cs')
| -rw-r--r-- | MediaBrowser.Program/Program.cs | 35 |
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();
- }
- }
-}
|
