aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-20 21:04:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-20 21:04:14 -0400
commit2e511fba839e86d9393e5eeb10795f1b0aed7ce0 (patch)
treed82481b8352ae2f088cbe902cc7fc222b8b0a0ed /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
parentb5615cb233923f8424a40af009101a901f30f591 (diff)
support run as service
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerApplicationPaths.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
index ac552b8de..fb3c5aec8 100644
--- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
+++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
@@ -26,6 +26,17 @@ namespace MediaBrowser.Server.Implementations
{
}
#endif
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class.
+ /// </summary>
+ /// <param name="programDataPath">The program data path.</param>
+ public ServerApplicationPaths(string programDataPath)
+ : base(programDataPath)
+ {
+
+ }
+
/// <summary>
/// Gets the path to the base root media directory
/// </summary>
@@ -117,7 +128,7 @@ namespace MediaBrowser.Server.Implementations
return Path.Combine(ItemsByNamePath, "MusicGenre");
}
}
-
+
/// <summary>
/// Gets the path to the Studio directory
/// </summary>