我正在尝试从 C# 应用程序调用 ant 脚本。我希望控制台窗口弹出并保持不变(我现在只是调用命令提示符,但我最终想调用一个 ant 脚本,这可能需要一个小时)。这是我正在使用的代码,我对原始代码进行了更改:
public void ExecuteCommandSync(object command)
{
try
{
// create the ProcessStartInfo using "cmd" as the program to be run,
// and "/c " as the parameters.
// Incidentally, /c tells cmd that we want it to execute the command that follows,
// and then exit.
System.Diagnostics.ProcessStartInfo procStartInfo =
new System.Diagnostics.ProcessStartInfo("cmd", "/k " + command);
// The following commands are needed to redirect the standard output.
// This means that it will be redirected to the Process.StandardOutput StreamReader.
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
// Do not create the black window.
procStartInfo.CreateNoWindow = false;
// Now we create a process, assign its ProcessStartInfo and start it
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
proc.WaitForExit();
}
catch (Exception objException)
{
Console.WriteLine(objException);
}
}
我还想传递最多 5 个参数,但现在我只关心保持窗口打开足够长的时间以查看发生了什么,并且我对阅读 ant 脚本生成的任何内容不感兴趣。我不想让任何人为我做我的工作,但我一直在努力解决这个问题,所以任何帮助都将不胜感激!