我创建项目“MyProj”并添加到资源程序“This.exe”...
如何在“MyProj.exe”中启动“this.exe”?
感谢任何想法。
答案 0 :(得分:3)
将.exe添加到项目后,转到属性窗口,然后将Build action
更改为Content
,将Copy to output directory
更改为Always Copy
或Copy if newer
运行应用程序使用:
Process.Start("This.exe");
答案 1 :(得分:1)
按 F5 或转到Debug -> Start Debugging
(这与点击Play
按钮相同)。
如果您不想调试,请按 Ctrl + F5 或转到Debug -> Start without debugging
。
修改强> 在作者编辑之后,我认为这就是答案:Launching an application (.EXE) from C#?