mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
moved rootdir to eloquera
This commit is contained in:
parent
0155de4d92
commit
9e4bb278ef
35 changed files with 398 additions and 565 deletions
|
@ -7,6 +7,7 @@ namespace NzbDrone.Common
|
|||
{
|
||||
private const string WEB_FOLDER = "NzbDrone.Web\\";
|
||||
private const string APP_DATA = "App_Data\\";
|
||||
private const string WEB_BIN = "bin\\";
|
||||
public const string IIS_FOLDER = "IISExpress";
|
||||
public const string IIS_EXE = "iisexpress.exe";
|
||||
|
||||
|
@ -70,6 +71,11 @@ namespace NzbDrone.Common
|
|||
return Path.Combine(environmentProvider.GetWebRoot(), APP_DATA);
|
||||
}
|
||||
|
||||
public static string GetWebBinPath(this EnvironmentProvider environmentProvider)
|
||||
{
|
||||
return Path.Combine(environmentProvider.GetWebRoot(), WEB_BIN);
|
||||
}
|
||||
|
||||
public static string GetNlogConfigPath(this EnvironmentProvider environmentProvider)
|
||||
{
|
||||
return Path.Combine(environmentProvider.GetWebRoot(), LOG_CONFIG_FILE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue