commit e389d80caccc59efbc4875083c6c6e4245944065 Author: LukePulverenti Luke Pulverenti luke pulverenti Date: Fri Aug 17 15:07:21 2012 -0400 Removed more kernel methods and deprecated the Configuration and HtmlBrowser projects. They've both been replaced by the new WebDashboard project. 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"; } + } + } +}