mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 11:37:01 +00:00
19 lines
599 B
C#
19 lines
599 B
C#
using System;
|
|
|
|
namespace CMLeonOS.Commands
|
|
{
|
|
public static class VersionCommand
|
|
{
|
|
public static void ProcessVersion()
|
|
{
|
|
Console.WriteLine(Version.DisplayVersionWithGit);
|
|
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}");
|
|
Console.WriteLine($"Git Commit: {Version.GitCommit}");
|
|
}
|
|
}
|
|
}
|