aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Program/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Program/Program.cs')
-rw-r--r--MediaBrowser.Program/Program.cs48
1 files changed, 48 insertions, 0 deletions
diff --git a/MediaBrowser.Program/Program.cs b/MediaBrowser.Program/Program.cs
new file mode 100644
index 000000000..668869685
--- /dev/null
+++ b/MediaBrowser.Program/Program.cs
@@ -0,0 +1,48 @@
+using System;
+using System.Configuration;
+using System.IO;
+using MediaBrowser.Controller;
+
+namespace MediaBrowser.Program
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ LoadKernel();
+ }
+
+ private static void LoadKernel()
+ {
+ DateTime now = DateTime.Now;
+
+ Console.WriteLine("Loading");
+
+ string installDir = ConfigurationManager.AppSettings["DataPath"];
+
+ if (!Path.IsPathRooted(installDir))
+ {
+ string path = System.Reflection.Assembly.GetExecutingAssembly().Location;
+ path = Path.GetDirectoryName(path);
+
+ installDir = Path.Combine(path, installDir);
+
+ installDir = Path.GetFullPath(installDir);
+ }
+
+ if (!Directory.Exists(installDir))
+ {
+ Directory.CreateDirectory(installDir);
+ }
+
+ Kernel kernel = new Kernel(installDir);
+
+ kernel.Init();
+
+ var time = DateTime.Now - now;
+ Console.WriteLine("Done in " + time.TotalSeconds + " seconds");
+ Console.WriteLine("Press Enter to quit.");
+ Console.ReadLine();
+ }
+ }
+}