Commit refactoring

This commit is contained in:
zontreck 2024-12-17 12:10:01 -07:00
parent f735bce4e1
commit d33d11123d
51 changed files with 348 additions and 18 deletions

19
Assembly/ASMInfo.cs Normal file
View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
[assembly: AssemblyCompany("Piccari Creations")]
[assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)]
[assembly: AssemblyCopyright("(C) 2020 Tara Piccari")]
[assembly: AssemblyFileVersion("5.0.7.9200")]
[assembly: AssemblyDescription("ForgeCore Bot Server")]
namespace ForgeCore.Assemble
{
public class ASMInfo
{
public static string BotName = "ForgeCore";
public static string BotVer = "2.0.121524.1636";
}
}