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