0

可能重复:
在 C# 程序中嵌入外部可执行文件

我创建项目“MyProj”并添加到资源程序“This.exe”...

如何在“MyProj.exe”中启动“this.exe”?

感谢您的任何想法。

4

2 回答 2

3

Once you added the .exe to your project, got to the properties window then change the Build action to Content and Copy to output directory to Always Copy or Copy if newer

enter image description here

To run the Application use :

Process.Start("This.exe");
于 2012-09-15T09:46:49.373 回答
1

F5或转到Debug -> Start Debugging(这与点击Play按钮相同)。

如果您不想调试,请按Ctrl+F5或转到Debug -> Start without debugging.

编辑: 经过作者的编辑,我认为这就是答案:Launching an application (.EXE) from C#?

或者也许:在visual studio中运行作为资源添加的exe文件

于 2012-09-15T09:32:49.840 回答