aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/App.xaml.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 00:08:27 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 00:08:27 -0500
commit9911df11e8a96d5d7fffcd8618b63a6adb27701f (patch)
treeb7e446296c6b0f61804430cd59beda68aa549065 /MediaBrowser.ServerApplication/App.xaml.cs
parent211d24e66e717f6294840b4f91806a24c1fb2e78 (diff)
extracted provider manager. took more off the kernel
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
-rw-r--r--MediaBrowser.ServerApplication/App.xaml.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs
index a3e273438..0155d0c90 100644
--- a/MediaBrowser.ServerApplication/App.xaml.cs
+++ b/MediaBrowser.ServerApplication/App.xaml.cs
@@ -156,13 +156,13 @@ namespace MediaBrowser.ServerApplication
{
CompositionRoot = new ApplicationHost();
- var win = new MainWindow(CompositionRoot.LogManager, CompositionRoot, CompositionRoot.ServerConfigurationManager);
-
Logger = CompositionRoot.LogManager.GetLogger("App");
- win.Show();
-
await CompositionRoot.Init();
+
+ var win = new MainWindow(CompositionRoot.LogManager, CompositionRoot, CompositionRoot.ServerConfigurationManager, CompositionRoot.UserManager, CompositionRoot.LibraryManager, CompositionRoot.JsonSerializer);
+
+ win.Show();
}
catch (Exception ex)
{