From e389d80caccc59efbc4875083c6c6e4245944065 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Fri, 17 Aug 2012 15:07:21 -0400 Subject: [PATCH] Removed more kernel methods and deprecated the Configuration and HtmlBrowser projects. They've both been replaced by the new WebDashboard project. --- Plugin.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Plugin.cs diff --git a/Plugin.cs b/Plugin.cs new file mode 100644 index 0000000000..3ee0e04a18 --- /dev/null +++ b/Plugin.cs @@ -0,0 +1,15 @@ +using System.ComponentModel.Composition; +using MediaBrowser.Common.Plugins; +using MediaBrowser.Model.Plugins; + +namespace MediaBrowser.WebDashboard +{ + [Export(typeof(BasePlugin))] + public class Plugin : BaseGenericPlugin + { + public override string Name + { + get { return "Dashboard"; } + } + } +}