19 lines
575 B
C#
19 lines
575 B
C#
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-2024 Tara Piccari")]
|
|
[assembly: AssemblyFileVersion("6.0.1.0002")]
|
|
[assembly: AssemblyDescription("ForgeCore Bot Server")]
|
|
|
|
namespace ForgeCore.Assemble
|
|
{
|
|
public class ASMInfo
|
|
{
|
|
public static string BotName = "ForgeCore";
|
|
public static string BotVer = "2.0.121824.1617";
|
|
}
|
|
}
|