diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-21 00:00:56 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-21 00:00:56 -0500 |
| commit | acf5b0b6ed173a3a9540d0585bd491a119d524cf (patch) | |
| tree | b3683559974e1c2ba81301a30788b0ce47ac331e /MediaBrowser.ServerApplication/App.xaml.cs | |
| parent | a0ced20d5b2c486e6798a93d253ab106418bbd6c (diff) | |
isolated DotNetZip dependancy
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/App.xaml.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs index 487b60485..e50370444 100644 --- a/MediaBrowser.ServerApplication/App.xaml.cs +++ b/MediaBrowser.ServerApplication/App.xaml.cs @@ -1,13 +1,12 @@ -using MediaBrowser.Common.IO; -using MediaBrowser.Common.Kernel; +using MediaBrowser.Common.Kernel; using MediaBrowser.Common.UI; using MediaBrowser.Controller; using MediaBrowser.IsoMounter; using MediaBrowser.Server.Uninstall; +using MediaBrowser.ServerApplication.Implementations; using System; using System.Collections.Generic; using System.Diagnostics; -using System.IO; using System.Linq; using System.Windows; @@ -170,7 +169,7 @@ namespace MediaBrowser.ServerApplication /// <returns>IKernel.</returns> protected override IKernel InstantiateKernel() { - return new Kernel(new PismoIsoManager()); + return new Kernel(new PismoIsoManager(), new DotNetZipClient()); } /// <summary> |
