mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
13 lines
314 B
C#
13 lines
314 B
C#
using System.Diagnostics;
|
|
|
|
namespace AntDesign.Docs.Build.CLI.Extensions
|
|
{
|
|
public static class ProcessExtensions
|
|
{
|
|
public static void Exec(this Process process, string command)
|
|
{
|
|
if (!process.HasExited)
|
|
process.StandardInput.WriteLine(command);
|
|
}
|
|
}
|
|
} |