diff --git a/MediaBrowser.TV/MediaBrowser.TV.csproj b/MediaBrowser.TV/MediaBrowser.TV.csproj deleted file mode 100644 index ccece21fe4..0000000000 --- a/MediaBrowser.TV/MediaBrowser.TV.csproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - Debug - AnyCPU - {32DFC600-CD2F-4B2D-B39A-3B4C6C32F9B4} - Library - Properties - MediaBrowser.TV - MediaBrowser.TV - v4.5 - 512 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - Always - - - - - - - - - - - - - - - - - - - {9142eefa-7570-41e1-bfcc-468bb571af2f} - MediaBrowser.Common - - - {17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2} - MediaBrowser.Controller - - - {7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b} - MediaBrowser.Model - - - - - xcopy "$(TargetPath)" "$(SolutionDir)\ProgramData\Plugins\" /y - - - \ No newline at end of file diff --git a/MediaBrowser.TV/Plugin.cs b/MediaBrowser.TV/Plugin.cs deleted file mode 100644 index c4ae87cae4..0000000000 --- a/MediaBrowser.TV/Plugin.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.ComponentModel.Composition; -using MediaBrowser.Common.Plugins; -using MediaBrowser.Controller; -using MediaBrowser.Controller.Library; -using MediaBrowser.Model.Plugins; -using MediaBrowser.TV.Entities; - -namespace MediaBrowser.TV -{ - [Export(typeof(BasePlugin))] - public class Plugin : BaseGenericPlugin - { - public override string Name - { - get { return "TV"; } - } - - protected override void InitializeOnServer() - { - Kernel.Instance.ItemController.PreBeginResolvePath += ItemController_PreBeginResolvePath; - } - - protected override void DisposeOnServer() - { - Kernel.Instance.ItemController.PreBeginResolvePath -= ItemController_PreBeginResolvePath; - } - - void ItemController_PreBeginResolvePath(object sender, PreBeginResolveEventArgs e) - { - // Don't try and resolve files with the metadata folder - if (System.IO.Path.GetFileName(e.Path).Equals("metadata", StringComparison.OrdinalIgnoreCase) && e.IsDirectory) - { - if (e.Parent is Season || e.Parent is Series) - { - e.Cancel = true; - } - } - } - } -} diff --git a/MediaBrowser.TV/Properties/AssemblyInfo.cs b/MediaBrowser.TV/Properties/AssemblyInfo.cs deleted file mode 100644 index ebc70e3a2e..0000000000 --- a/MediaBrowser.TV/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.TV")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MediaBrowser.TV")] -[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("1646eb9e-3f4f-46ea-b1e9-09bc85c1143a")] - -// 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.*")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/_UpgradeReport_Files/UpgradeReport.css b/_UpgradeReport_Files/UpgradeReport.css deleted file mode 100644 index 1f0cd1ffcf..0000000000 --- a/_UpgradeReport_Files/UpgradeReport.css +++ /dev/null @@ -1,118 +0,0 @@ -/* Body style, for the entire document */ -body -{ - background: #F3F3F4; - color: #1E1E1F; - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; - padding: 0; - margin: 0; -} - -/* Header1 style, used for the main title */ -h1 -{ - padding: 10px 0px 10px 10px; - font-size: 21pt; - background-color: #E2E2E2; - border-bottom: 1px #C1C1C2 solid; - color: #201F20; - margin: 0; - font-weight: normal; -} - -/* Header2 style, used for "Overview" and other sections */ -h2 -{ - font-size: 18pt; - font-weight: normal; - padding: 15px 0 5px 0; - margin: 0; -} - -/* Header3 style, used for sub-sections, such as project name */ -h3 -{ - font-weight: normal; - font-size: 15pt; - margin: 0; - padding: 15px 0 5px 0; - background-color: transparent; -} - -/* Color all hyperlinks one color */ -a -{ - color: #1382CE; -} - -/* Table styles */ -table -{ - border-spacing: 0 0; - border-collapse: collapse; - font-size: 10pt; -} - -table th -{ - background: #E7E7E8; - text-align: left; - text-decoration: none; - font-weight: normal; - padding: 3px 6px 3px 6px; -} - -table td -{ - vertical-align: top; - padding: 3px 6px 5px 5px; - margin: 0px; - border: 1px solid #E7E7E8; - background: #F7F7F8; -} - -/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ -.localLink -{ - color: #1E1E1F; - background: #EEEEED; - text-decoration: none; -} - -.localLink:hover -{ - color: #1382CE; - background: #FFFF99; - text-decoration: none; -} - -/* Center text, used in the over views cells that contain message level counts */ -.textCentered -{ - text-align: center; -} - -/* The message cells in message tables should take up all avaliable space */ -.messageCell -{ - width: 100%; -} - -/* Padding around the content after the h1 */ -#content -{ - padding: 0px 12px 12px 12px; -} - -/* The overview table expands to width, with a max width of 97% */ -#overview table -{ - width: auto; - max-width: 75%; -} - -/* The messages tables are always 97% width */ -#messages table -{ - width: 97%; -} \ No newline at end of file diff --git a/_UpgradeReport_Files/UpgradeReport.xslt b/_UpgradeReport_Files/UpgradeReport.xslt deleted file mode 100644 index acf18c33f0..0000000000 --- a/_UpgradeReport_Files/UpgradeReport.xslt +++ /dev/null @@ -1,538 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ - - - - Solution - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error - Warning - Success - - - - - - - - - - - - - - - - - - - - - - - - - - - - Message - Warning - Error - Message - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ProjectPathErrorsWarningsMessages
- - - - _UpgradeReport_Files\UpgradeReport_Error.png - _UpgradeReport_Files\UpgradeReport_Warning.png - _UpgradeReport_Files\UpgradeReport_Success.png - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' - - - - - - - -
-
- - - - - - - - - - - - - ' - - - - - - - - - - - Show additional messages - - - - - - - - - - - - - - - - - ' - - - - - - - - - - - Hide additional messages - - - - - - - - - - - - - - display: none - - - - - - - - - - - _UpgradeReport_Files\UpgradeReport_Error.png - _UpgradeReport_Files\UpgradeReport_Warning.png - _UpgradeReport_Files\UpgradeReport_Information.png - - - - - - - - - - : - - - - - - - - - - - - - - - - - - - - - - - -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Message
- - - logged no messages. -
-
-
- - - - - - - -]]> - - - - - - - - Migration Report - - - - - -

- Migration Report - -

- -
-

Overview

- - - - -
- -
- -

Solution and projects

- -
- -
-
- - -
- -
\ No newline at end of file diff --git a/_UpgradeReport_Files/UpgradeReport_Error.png b/_UpgradeReport_Files/UpgradeReport_Error.png deleted file mode 100644 index 2ecbdf3c95..0000000000 Binary files a/_UpgradeReport_Files/UpgradeReport_Error.png and /dev/null differ diff --git a/_UpgradeReport_Files/UpgradeReport_Information.png b/_UpgradeReport_Files/UpgradeReport_Information.png deleted file mode 100644 index adefdc716e..0000000000 Binary files a/_UpgradeReport_Files/UpgradeReport_Information.png and /dev/null differ diff --git a/_UpgradeReport_Files/UpgradeReport_Success.png b/_UpgradeReport_Files/UpgradeReport_Success.png deleted file mode 100644 index c8c27bcf09..0000000000 Binary files a/_UpgradeReport_Files/UpgradeReport_Success.png and /dev/null differ diff --git a/_UpgradeReport_Files/UpgradeReport_Warning.png b/_UpgradeReport_Files/UpgradeReport_Warning.png deleted file mode 100644 index 7197e0304d..0000000000 Binary files a/_UpgradeReport_Files/UpgradeReport_Warning.png and /dev/null differ