diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /TestPlugin/Plugin.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'TestPlugin/Plugin.cs')
| -rw-r--r-- | TestPlugin/Plugin.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/TestPlugin/Plugin.cs b/TestPlugin/Plugin.cs new file mode 100644 index 000000000..2c878604b --- /dev/null +++ b/TestPlugin/Plugin.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.ComponentModel.Composition; +using MediaBrowser.Common.Plugins; +using MediaBrowser.Common.Logging; +using MediaBrowser.Controller.Entities; + +namespace TestPlugin +{ + [Export(typeof(BasePlugin))] + public class Plugin : BasePlugin + { + public override string Name + { + get { return "Test MB3 Plug-in"; } + } + + protected override void InitializeOnServer(bool isFirstRun) + { + base.InitializeOnServer(isFirstRun); + Logger.LogDebugInfo("Test Plug-in Loaded."); + } + } +} |
