Files
CMLeonOS/utils/Version.cs

27 lines
588 B
C#
Raw Normal View History

2026-02-02 02:01:52 +08:00
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 FullVersion
{
2026-02-02 04:40:47 +08:00
get { return $"{Major}.{Minor}.{Patch}"; }
2026-02-02 02:01:52 +08:00
}
public static string ShortVersion
{
get { return $"{Major}.{Minor}.{Patch}"; }
}
public static string DisplayVersion
{
get { return $"CMLeonOS v{ShortVersion}"; }
}
}
}