From b50f78e5da6f3fdfc59e577ca61b88771da7d211 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Thu, 12 Jul 2012 02:55:27 -0400 Subject: Initial check-in --- .../MediaBrowser.Configuration.csproj | 77 ++++++++++++++++++++++ MediaBrowser.Configuration/Plugin.cs | 11 ++++ .../Properties/AssemblyInfo.cs | 36 ++++++++++ MediaBrowser.Configuration/packages.config | 4 ++ 4 files changed, 128 insertions(+) create mode 100644 MediaBrowser.Configuration/MediaBrowser.Configuration.csproj create mode 100644 MediaBrowser.Configuration/Plugin.cs create mode 100644 MediaBrowser.Configuration/Properties/AssemblyInfo.cs create mode 100644 MediaBrowser.Configuration/packages.config (limited to 'MediaBrowser.Configuration') diff --git a/MediaBrowser.Configuration/MediaBrowser.Configuration.csproj b/MediaBrowser.Configuration/MediaBrowser.Configuration.csproj new file mode 100644 index 0000000000..356aa502f2 --- /dev/null +++ b/MediaBrowser.Configuration/MediaBrowser.Configuration.csproj @@ -0,0 +1,77 @@ + + + + + Debug + AnyCPU + {933CC468-E22B-48D8-8BCA-2E026F411CA2} + Library + Properties + MediaBrowser.Configuration + MediaBrowser.Configuration + v4.5 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + False + ..\packages\Rx-Main.1.0.11226\lib\Net4\System.Reactive.dll + + + + + + + + + + + + + + {9142eefa-7570-41e1-bfcc-468bb571af2f} + MediaBrowser.Common + + + {17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2} + MediaBrowser.Controller + + + {9b1ddd79-5134-4df3-ace3-d1957a7350d8} + MediaBrowser.Model + + + + + + + + xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData\Plugins\$(ProjectName)\" /y + + + \ No newline at end of file diff --git a/MediaBrowser.Configuration/Plugin.cs b/MediaBrowser.Configuration/Plugin.cs new file mode 100644 index 0000000000..a16ad064b4 --- /dev/null +++ b/MediaBrowser.Configuration/Plugin.cs @@ -0,0 +1,11 @@ +using MediaBrowser.Common.Plugins; + +namespace MediaBrowser.Configuration +{ + public class Plugin : BasePlugin + { + protected override void InitInternal() + { + } + } +} diff --git a/MediaBrowser.Configuration/Properties/AssemblyInfo.cs b/MediaBrowser.Configuration/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..5212f26db7 --- /dev/null +++ b/MediaBrowser.Configuration/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +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.Configuration")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MediaBrowser.Configuration")] +[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("c109d2b1-2368-43a2-bed1-ec2cfb33e741")] + +// 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")] diff --git a/MediaBrowser.Configuration/packages.config b/MediaBrowser.Configuration/packages.config new file mode 100644 index 0000000000..47102a263f --- /dev/null +++ b/MediaBrowser.Configuration/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.2.3