From bf0c6ec182134cb2b13ac8ffabc6e1d6397c61e6 Mon Sep 17 00:00:00 2001 From: RedShirtMB Mark Linton redshirt linton Date: Sat, 4 Aug 2012 16:54:00 -0700 Subject: Initial creation of the ServerApplication --- MediaBrowser.Program/App.config | 17 ------ MediaBrowser.Program/MediaBrowser.Program.csproj | 73 ------------------------ MediaBrowser.Program/Program.cs | 35 ------------ MediaBrowser.Program/Properties/AssemblyInfo.cs | 36 ------------ 4 files changed, 161 deletions(-) delete mode 100644 MediaBrowser.Program/App.config delete mode 100644 MediaBrowser.Program/MediaBrowser.Program.csproj delete mode 100644 MediaBrowser.Program/Program.cs delete mode 100644 MediaBrowser.Program/Properties/AssemblyInfo.cs (limited to 'MediaBrowser.Program') diff --git a/MediaBrowser.Program/App.config b/MediaBrowser.Program/App.config deleted file mode 100644 index 5aff9b350..000000000 --- a/MediaBrowser.Program/App.config +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MediaBrowser.Program/MediaBrowser.Program.csproj b/MediaBrowser.Program/MediaBrowser.Program.csproj deleted file mode 100644 index adfc331b8..000000000 --- a/MediaBrowser.Program/MediaBrowser.Program.csproj +++ /dev/null @@ -1,73 +0,0 @@ - - - - - Debug - AnyCPU - {78AEA637-AF42-4F43-8E2B-0F2F0E2931F3} - Exe - Properties - MediaBrowser.Program - MediaBrowser.Program - v4.5 - 512 - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - {9142eefa-7570-41e1-bfcc-468bb571af2f} - MediaBrowser.Common - - - {17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2} - MediaBrowser.Controller - - - {7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b} - MediaBrowser.Model - - - - - \ No newline at end of file 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 progress = new Progress(); - - 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(); - } - } -} diff --git a/MediaBrowser.Program/Properties/AssemblyInfo.cs b/MediaBrowser.Program/Properties/AssemblyInfo.cs deleted file mode 100644 index f3ba9f028..000000000 --- a/MediaBrowser.Program/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("MediaBrowser.Program")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MediaBrowser.Program")] -[assembly: AssemblyCopyright("Copyright © 2012")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("4be8a93f-7491-48e4-9400-f3a95a7bbdb2")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -- cgit v1.2.3