mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
18 lines
525 B
C#
18 lines
525 B
C#
using System;
|
|
|
|
namespace CMLeonOS.Commands
|
|
{
|
|
public static class VersionCommand
|
|
{
|
|
public static void ProcessVersion()
|
|
{
|
|
Console.WriteLine(Version.DisplayVersion);
|
|
Console.WriteLine($"Major: {Version.Major}");
|
|
Console.WriteLine($"Minor: {Version.Minor}");
|
|
Console.WriteLine($"Patch: {Version.Patch}");
|
|
Console.WriteLine($"Type: {Version.VersionType}");
|
|
Console.WriteLine($"Full Version: {Version.FullVersion}");
|
|
}
|
|
}
|
|
}
|