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