feat: 发布0.7版本yi-abp-tool

This commit is contained in:
橙子
2024-06-05 20:28:53 +08:00
parent 9cc5d76888
commit 39a9416427
4 changed files with 6 additions and 5 deletions

View File

@@ -47,7 +47,6 @@ namespace Yi.Abp.Tool.Commands
StartCmd(cmdCommands);
await Console.Out.WriteLineAsync("恭喜~模块添加成功!");
return Task.CompletedTask;
}
/// <summary>
@@ -79,7 +78,7 @@ namespace Yi.Abp.Tool.Commands
ProcessStartInfo psi = new ProcessStartInfo
{
FileName = "cmd.exe",
Arguments = $"/c {string.Join("&", cmdCommands)}",
Arguments = $"/c chcp 65001&{string.Join("&", cmdCommands)}",
RedirectStandardInput = true,
RedirectStandardOutput = true,
RedirectStandardError = true,
@@ -99,6 +98,7 @@ namespace Yi.Abp.Tool.Commands
proc.WaitForExit();
}
/// <summary>
/// 检查路径
/// </summary>