Files
Yi.Framework/Yi.Abp.Net8/tool/Yi.Abp.Tool/Commands/VersionCommand.cs
2024-11-05 18:50:15 +08:00

15 lines
528 B
C#

// namespace Yi.Abp.Tool.Commands
// {
// public class VersionCommand : ICommand
// {
// public List<string> CommandStrs => new List<string> { "version", "v", "-version", "-v" };
//
// public Task InvokerAsync(Dictionary<string, string> options, string[] args)
// {
// var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
// Console.WriteLine($"Yi-ABP TOOL {version}");
// return Task.CompletedTask;
// }
// }
// }