diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-02-26 15:21:43 -0500 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-02-26 15:21:55 -0500 |
| commit | 0c8d924bfc64f91b7883507ebdfdc664a8495465 (patch) | |
| tree | 67bd775a5550361a765766ceefc4b2f0581ae9b3 /MediaBrowser.Controller/Kernel.cs | |
| parent | fbac08feada72c198cd5151e25008bca2b435cda (diff) | |
Extract IInstallationManager interface
first step to moving update logic to common
Diffstat (limited to 'MediaBrowser.Controller/Kernel.cs')
| -rw-r--r-- | MediaBrowser.Controller/Kernel.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Kernel.cs b/MediaBrowser.Controller/Kernel.cs index 7cb838e44..a4af76805 100644 --- a/MediaBrowser.Controller/Kernel.cs +++ b/MediaBrowser.Controller/Kernel.cs @@ -1,6 +1,7 @@ using MediaBrowser.Common.Kernel; using MediaBrowser.Common.Plugins; using MediaBrowser.Common.ScheduledTasks; +using MediaBrowser.Common.Updates; using MediaBrowser.Controller.Drawing; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.IO; @@ -70,7 +71,7 @@ namespace MediaBrowser.Controller /// Gets the installation manager. /// </summary> /// <value>The installation manager.</value> - public InstallationManager InstallationManager { get; private set; } + public IInstallationManager InstallationManager { get; private set; } /// <summary> /// Gets or sets the file system manager. |
