如何在c#中启动我的项目中包含的.exe文件?

时间:2012-09-15 09:30:51

标签: c#

  

可能重复:
  Embedding an external executable inside a C# program

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

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

感谢任何想法。

2 个答案:

答案 0 :(得分:3)

将.exe添加到项目后,转到属性窗口,然后将Build action更改为Content,将Copy to output directory更改为Always CopyCopy if newer

enter image description here

运行应用程序使用:

Process.Start("This.exe");

答案 1 :(得分:1)

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

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

修改 在作者编辑之后,我认为这就是答案:Launching an application (.EXE) from C#?

或者可能:Run exe file added as resource in visual studio