From 63a0d52fd115f3a4888acd53f9fd92defa9dc721 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 26 Nov 2014 15:57:16 -0500 Subject: allow separate configuration of app resources path --- MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs') diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs index 68956be18..d9973afe7 100644 --- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs +++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs @@ -12,12 +12,14 @@ namespace MediaBrowser.Server.Implementations /// /// Initializes a new instance of the class. /// - public ServerApplicationPaths(string programDataPath, string applicationPath) + public ServerApplicationPaths(string programDataPath, string applicationPath, string applicationResourcesPath) : base(programDataPath, applicationPath) { - + ApplicationResourcesPath = applicationResourcesPath; } + public string ApplicationResourcesPath { get; private set; } + /// /// Gets the path to the base root media directory /// -- cgit v1.2.3