increment version
This commit is contained in:
parent
1e9d6b70e2
commit
8835e0cf8b
2 changed files with 7 additions and 2 deletions
|
@ -7,7 +7,7 @@ using LibZNI;
|
|||
[assembly: AssemblyCompany("ZNI")]
|
||||
[assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)]
|
||||
[assembly: AssemblyCopyright("(C) 2020 Tara Piccari")]
|
||||
[assembly: AssemblyFileVersion("5.0.5.1249")]
|
||||
[assembly: AssemblyFileVersion("5.0.5.1250")]
|
||||
[assembly: AssemblyDescription("Second Life Bot - BotCore5")]
|
||||
[assembly: AutoUpdater("/job/ZBotCore/job/BotCore5", "module.tar")]
|
||||
|
||||
|
@ -16,7 +16,7 @@ namespace Bot.Assemble
|
|||
public class ASMInfo
|
||||
{
|
||||
public static string BotName = "ZBotCore";
|
||||
public static string BotVer = "5.0.5.1249";
|
||||
public static string BotVer = "5.0.5.1250";
|
||||
public static string GitPassword
|
||||
{
|
||||
get
|
||||
|
|
|
@ -48,6 +48,11 @@ namespace Bot
|
|||
public static unsafe void Main(string[] args)
|
||||
{
|
||||
File.WriteAllText("PID.lock", Process.GetCurrentProcess().Id.ToString());
|
||||
if (!Directory.Exists("BotData")) Directory.CreateDirectory("BotData");
|
||||
Directory.SetCurrentDirectory("BotData");
|
||||
|
||||
|
||||
|
||||
Console.WriteLine("Setting up Main Configuration");
|
||||
Log = new Logger("BotCore5");
|
||||
BotSession.Instance.Logger = Log;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue