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.Common.Implementations/BaseApplicationPaths.cs | |
| parent | 17081767da92369a29d5f324abebbcfabf4e8ab5 (diff) | |
allow separate configuration of app resources path
Diffstat (limited to 'MediaBrowser.Common.Implementations/BaseApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/BaseApplicationPaths.cs | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs index 2940f921c..4ad63b2e3 100644 --- a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs +++ b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs @@ -14,24 +14,12 @@ namespace MediaBrowser.Common.Implementations /// </summary> protected BaseApplicationPaths(string programDataPath, string applicationPath) { - _programDataPath = programDataPath; + ProgramDataPath = programDataPath; ApplicationPath = applicationPath; } public string ApplicationPath { get; private set; } - - /// <summary> - /// The _program data path - /// </summary> - private readonly string _programDataPath; - /// <summary> - /// Gets the path to the program data folder - /// </summary> - /// <value>The program data path.</value> - public string ProgramDataPath - { - get { return _programDataPath; } - } + public string ProgramDataPath { get; private set; } /// <summary> /// Gets the path to the system folder |
