diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-26 15:57:16 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-26 15:57:16 -0500 |
| commit | 63a0d52fd115f3a4888acd53f9fd92defa9dc721 (patch) | |
| tree | cc934bda5db40dc773893f9d1f1a4e2304911af8 /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | |
| parent | 17081767da92369a29d5f324abebbcfabf4e8ab5 (diff) | |
allow separate configuration of app resources path
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/ServerApplicationPaths.cs | 6 |
1 files changed, 4 insertions, 2 deletions
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 /// <summary> /// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class. /// </summary> - 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; } + /// <summary> /// Gets the path to the base root media directory /// </summary> |
