This commit is contained in:
2026-02-02 02:01:52 +08:00
parent 102cecbf6e
commit be4fbd0255
4 changed files with 818 additions and 1 deletions

28
Version.cs Normal file
View File

@@ -0,0 +1,28 @@
using System;
namespace CMLeonOS
{
public static class Version
{
public static string Major = "1";
public static string Minor = "0";
public static string Patch = "0";
public static string Build = "0";
public static string Revision = "0";
public static string FullVersion
{
get { return $"{Major}.{Minor}.{Patch}.{Build}.{Revision}"; }
}
public static string ShortVersion
{
get { return $"{Major}.{Minor}.{Patch}"; }
}
public static string DisplayVersion
{
get { return $"CMLeonOS v{ShortVersion}"; }
}
}
}