19 lines
553 B
C#
19 lines
553 B
C#
using System.Reflection;
|
|
|
|
[assembly:AssemblyCompany("Piccari Creations")]
|
|
[assembly:AssemblyCopyright("2018-2024")]
|
|
[assembly:AssemblyDefaultAlias("LibAC")]
|
|
[assembly:AssemblyTitle("LibAC")]
|
|
[assembly:AssemblyDescription("Aria's Creations Common Code Library")]
|
|
[assembly:AssemblyVersion("1.3.0.3")]
|
|
|
|
namespace LibAC
|
|
{
|
|
public class LibAC
|
|
{
|
|
public static readonly string BUILD_DATE = "121724";
|
|
public static readonly string BUILD_TIME = "1144";
|
|
|
|
public static string VERSION => $"1.3.${BUILD_DATE}.${BUILD_TIME}";
|
|
}
|
|
}
|