diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-18 16:06:00 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-18 16:06:00 -0500 |
| commit | e58e34ceca52914bd2475c76ede5f7ee91964d00 (patch) | |
| tree | 963560d56662ddc2145c774ec36cc7d6458ca601 /MediaBrowser.Server.Mono | |
| parent | c6f1bd93fc3c6aab16d5ba2c0ceeddb9303d029d (diff) | |
move classes to portable project
Diffstat (limited to 'MediaBrowser.Server.Mono')
| -rw-r--r-- | MediaBrowser.Server.Mono/MonoAppHost.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.Server.Mono/Program.cs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Mono/MonoAppHost.cs b/MediaBrowser.Server.Mono/MonoAppHost.cs index fd3c9f506d..bb7db6a7cc 100644 --- a/MediaBrowser.Server.Mono/MonoAppHost.cs +++ b/MediaBrowser.Server.Mono/MonoAppHost.cs @@ -3,7 +3,8 @@ using System.Collections.Generic; using System.Reflection; using Emby.Server.Core; using Emby.Server.Core.Data; -using Emby.Server.Core.FFMpeg; +using Emby.Server.Implementations; +using Emby.Server.Implementations.FFMpeg; using MediaBrowser.IsoMounter; using MediaBrowser.Model.IO; using MediaBrowser.Model.Logging; diff --git a/MediaBrowser.Server.Mono/Program.cs b/MediaBrowser.Server.Mono/Program.cs index 9cc13a59e4..39a537e1e3 100644 --- a/MediaBrowser.Server.Mono/Program.cs +++ b/MediaBrowser.Server.Mono/Program.cs @@ -16,6 +16,7 @@ using Emby.Common.Implementations.Logging; using Emby.Common.Implementations.Networking; using Emby.Common.Implementations.Security; using Emby.Server.Core; +using Emby.Server.Implementations; using Emby.Server.Implementations.IO; using MediaBrowser.Model.System; using MediaBrowser.Server.Startup.Common.IO; @@ -38,7 +39,7 @@ namespace MediaBrowser.Server.Mono var applicationPath = Assembly.GetEntryAssembly().Location; - var options = new StartupOptions(); + var options = new StartupOptions(Environment.GetCommandLineArgs()); // Allow this to be specified on the command line. var customProgramDataPath = options.GetOption("-programdata"); |
