swap config location

This commit is contained in:
Zontreck 2020-01-17 13:20:42 -07:00
parent 17ac8d7b74
commit 486cb0f009
2 changed files with 10 additions and 2 deletions

View file

@ -7,7 +7,13 @@ namespace Bot.Assemble
public class ASMInfo public class ASMInfo
{ {
public static string BotName = "ZBotCore"; public static string BotName = "ZBotCore";
public static double BotVer = 5.1; public static double BotVer = 5.2;
public static string GitPassword = "**REMOVED**"; public static string GitPassword
{
get
{
return MainConfiguration.Load().GitPassword;
}
}
} }
} }

View file

@ -28,6 +28,8 @@ namespace Bot
//public License LicenseKey { get; set; } //public License LicenseKey { get; set; }
public string ActivationCode { get; set; } public string ActivationCode { get; set; }
public string GitPassword { get; set; }
public MainConfiguration() public MainConfiguration()
{ {