mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-01-31 17:53:01 +02:00
30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
#region Usings
|
|
using System.IO;
|
|
using System.Reflection;
|
|
#endregion
|
|
|
|
namespace Novetus.Bootstrapper
|
|
{
|
|
#region Local Paths
|
|
|
|
public class LocalPaths
|
|
{
|
|
public static readonly string FixedBinDir = GlobalPaths.BasePathLauncher + @"\\bin";
|
|
public static readonly string FixedConfigDir = GlobalPaths.BasePathLauncher + @"\\config";
|
|
public static readonly string FixedLogDir = GlobalPaths.BasePathLauncher + @"\\logs";
|
|
public static readonly string FixedDataDir = FixedBinDir + @"\\data";
|
|
|
|
#region File Names
|
|
public static readonly string LauncherName = "Novetus.exe";
|
|
public static readonly string URIName = "NovetusURI.exe";
|
|
public static readonly string DependencyLauncherName = "Novetus_dependency_installer.bat";
|
|
#endregion
|
|
|
|
#region File Paths
|
|
public static readonly string LauncherPath = FixedBinDir + "\\" + LauncherName;
|
|
public static readonly string InfoPath = FixedConfigDir + "\\" + GlobalPaths.InfoName;
|
|
public static readonly string ConfigPath = FixedConfigDir + "\\" + GlobalPaths.ConfigName;
|
|
#endregion
|
|
}
|
|
#endregion
|
|
} |