Files
CMLeonOS/utils/Version.cs

28 lines
675 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";
2026-02-05 21:35:35 +08:00
public static string VersionType = "PreRelease";
2026-02-02 02:01:52 +08:00
public static string FullVersion
{
2026-02-05 21:35:35 +08:00
get { return $"{Major}.{Minor}.{Patch}-{VersionType}"; }
2026-02-02 02:01:52 +08:00
}
public static string ShortVersion
{
get { return $"{Major}.{Minor}.{Patch}"; }
}
public static string DisplayVersion
{
2026-02-05 21:35:35 +08:00
get { return $"CMLeonOS v{ShortVersion} ({VersionType})"; }
2026-02-02 02:01:52 +08:00
}
}
}