diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-25 22:53:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-25 22:53:47 -0400 |
| commit | 21be035df03c860ef5bb16aa0e39a0f33f5ac35a (patch) | |
| tree | 2b71e5c29d66ce58a498b5cff65a6f5ac48f7d9a /MediaBrowser.Server.Startup.Common/ApplicationHost.cs | |
| parent | b30c58f82580a82586526114858fa0ca791f096e (diff) | |
make nfo project portable
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/ApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index 8a6e3760d..4372dc283 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -113,6 +113,8 @@ using MediaBrowser.Model.Net; using MediaBrowser.Model.News; using MediaBrowser.Model.Serialization; using MediaBrowser.Model.Social; +using MediaBrowser.Model.Xml; +using MediaBrowser.Server.Implementations.Xml; namespace MediaBrowser.Server.Startup.Common { @@ -631,6 +633,8 @@ namespace MediaBrowser.Server.Startup.Common RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer()); + RegisterSingleInstance<IXmlReaderSettingsFactory>(new XmlReaderSettingsFactory()); + UserDataManager = new UserDataManager(LogManager, ServerConfigurationManager); RegisterSingleInstance(UserDataManager); |
