如何从 Windows C# (Visual Studio) 运行 cygwin 编译的程序?

发布于 2024-08-29 05:42:55 字数 503 浏览 3 评论 0原文

嗨,

我想使用 c# 在 Visual Studio 中运行 cygwin 编译的程序,

谢谢:)

L

BTW:

            System.Diagnostics.Process MyProcess = new System.Diagnostics.Process();
            MyProcess.StartInfo.UseShellExecute = false;

            MyProcess.StartInfo.FileName = "C:\\cygwin\\Cygwin.bat";
            MyProcess.StartInfo.CreateNoWindow = true;
            MyProcess.Start();

这是我到目前为止尝试过的代码,我不知道如何让它运行 cygwin 编译的程序(AGFL 的 EP4IR)是要运行的目标程序)

谢谢

HI,

I would like to run a cygwin compiled program in visual studio using c#

Thanks :)

L

BTW:

            System.Diagnostics.Process MyProcess = new System.Diagnostics.Process();
            MyProcess.StartInfo.UseShellExecute = false;

            MyProcess.StartInfo.FileName = "C:\\cygwin\\Cygwin.bat";
            MyProcess.StartInfo.CreateNoWindow = true;
            MyProcess.Start();

This is the code I've tried so far, I have no idea how to make it run the cygwin compiled program tho (AGFL's EP4IR is the targeted program to run)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你是我的挚爱i 2024-09-05 05:42:55

就像任何其他程序一样。您是否正在运行任何具体的知名程序或您自己的程序?

另外,请参阅 StackOverflow 上的相关问题:从 .NET 执行 Cygwin 进程

Just like any other program. Are you running any concrete well-known program or your own?

Also, see this related question here on StackOverflow: Executing a Cygwin process from .NET

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文