gpt4 book ai didi

c# - 在 C# 中使用 Process 执行 dotnet 命令

转载 作者:行者123 更新时间:2023-12-04 00:30:14 25 4
gpt4 key购买 nike

我有以下 C# 代码行,其中打开进程并运行 dotnet 命令以打开我的控制台应用程序(使用 .net 标准/核心创建)

var args = new Dictionary<string, string> {
{ "-p", "title"},
{ "-l", "games"},
...
};

var arguments = string.Join(" ", args.Select((k) => string.Format("{0} {1}", k.Key, "\"" + k.Value + "\"")));

var dllPath = @"C:\Users\xyz\Documents\Visual Studio 2017\myConsole\bin\Debug\netcoreapp2.1\myConsole.dll";
ProcessStartInfo procStartInfo = new ProcessStartInfo();
procStartInfo.FileName = "C:\....\cmd.exe";
procStartInfo.Arguments = $"dotnet \"{dllPath}\" {arguments}";
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = false;
procStartInfo.RedirectStandardOutput = true;
procStartInfo.RedirectStandardError = true;

StringBuilder sb = new StringBuilder();
Process pr = new Process();
pr.StartInfo = procStartInfo;

pr.OutputDataReceived += (s, ev) =>
{
if (string.IsNullOrWhiteSpace(ev.Data))
{
return;
}

string[] split = ev.Data.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
int.TryParse(split[split.Length - 1], out output);
};

pr.ErrorDataReceived += (s, err) =>
{
// do stuff here
};

pr.EnableRaisingEvents = true;
pr.Start();
pr.BeginOutputReadLine();
pr.BeginErrorReadLine();

pr.WaitForExit();

命令Arguments的结果是:

dotnet "C:\Users\xyz\Documents\Visual Studio 2017\myConsole\bin\Debug\netcoreapp2.1\myConsole.dll" -p "title" -l "games" -s "" -r "none" -k "0" -d "/path/" -f ""

但是对于 OutputDataReceived 中的 ev.Data 事件看起来像:

Microsoft Windows [Version 10.0.16299.665]
(c) 2017 Microsoft Corporation. All rights reserved.

仅此而已……

我希望对 dll 运行 dotnet 命令。

如果我手动运行上面的结果命令 dotnet ....,可以正常工作。但不是来 self 的 C# 代码。为什么?

最佳答案

因为 cmd 返回:

Microsoft Windows [Version 10.0.16299.665] 
(c) 2017 Microsoft Corporation. All rights reserved.

你需要打电话

procStartInfo.FileName = "dotnet"

关于c# - 在 C# 中使用 Process 执行 dotnet 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52474306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com