Novetus_src/Novetus/Novetus.Bootstrapper/LocalPaths.cs

28 lines
954 B
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";
#region File Names
public static readonly string LauncherName = "Novetus.exe";
public static readonly string CMDName = "NovetusCMD.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;
#endregion
}
#endregion
}