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.HtmlBrowser.csproj | 72 ++++++++++++++++++++++ MediaBrowser.HtmlBrowser/Plugin.cs | 16 +++++ .../Properties/AssemblyInfo.cs | 36 +++++++++++ MediaBrowser.HtmlBrowser/packages.config | 4 ++ 4 files changed, 128 insertions(+) create mode 100644 MediaBrowser.HtmlBrowser/MediaBrowser.HtmlBrowser.csproj create mode 100644 MediaBrowser.HtmlBrowser/Plugin.cs create mode 100644 MediaBrowser.HtmlBrowser/Properties/AssemblyInfo.cs create mode 100644 MediaBrowser.HtmlBrowser/packages.config (limited to 'MediaBrowser.HtmlBrowser') diff --git a/MediaBrowser.HtmlBrowser/MediaBrowser.HtmlBrowser.csproj b/MediaBrowser.HtmlBrowser/MediaBrowser.HtmlBrowser.csproj new file mode 100644 index 0000000000..b496a2741f --- /dev/null +++ b/MediaBrowser.HtmlBrowser/MediaBrowser.HtmlBrowser.csproj @@ -0,0 +1,72 @@ + + + + + Debug + AnyCPU + {99B4CFE8-1441-4F0D-8C40-A70D0DD372ED} + Library + Properties + MediaBrowser.HtmlBrowser + MediaBrowser.HtmlBrowser + v4.5 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + ..\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 + + + + + + + + xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData\Plugins\$(ProjectName)\" /y + + + \ No newline at end of file diff --git a/MediaBrowser.HtmlBrowser/Plugin.cs b/MediaBrowser.HtmlBrowser/Plugin.cs new file mode 100644 index 0000000000..ea3bd4ccc9 --- /dev/null +++ b/MediaBrowser.HtmlBrowser/Plugin.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Reactive.Linq; +using MediaBrowser.Common.Plugins; +using MediaBrowser.Controller; +using MediaBrowser.Controller.Net; + +namespace MediaBrowser.HtmlBrowser +{ + public class Plugin : BasePlugin + { + protected override void InitInternal() + { + } + } +} diff --git a/MediaBrowser.HtmlBrowser/Properties/AssemblyInfo.cs b/MediaBrowser.HtmlBrowser/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..b65ea6f779 --- /dev/null +++ b/MediaBrowser.HtmlBrowser/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.HtmlBrowser")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MediaBrowser.HtmlBrowser")] +[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("2b84a02d-40ff-4187-818f-170abc3c31cf")] + +// 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.HtmlBrowser/packages.config b/MediaBrowser.HtmlBrowser/packages.config new file mode 100644 index 0000000000..47102a263f --- /dev/null +++ b/MediaBrowser.HtmlBrowser/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.2.3