本文介绍了如何在部署/发布模式下将外部启动程序(exe)添加到项目中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我在VS 2005 C#2.0中有一个应用程序.在主项目属性下的debug选项:-
启动操作-启动外部程序(路径例如C:\\ program Files \ FingoX \ fingo.exe)
当我们通过Visual Studio运行应用程序并成功运行时,该外部程序将首先执行.该程序实际上调用了我们的应用程序.

当我在发布模式下运行此应用程序时,它会通过消息:-
缺少调试目标.请构建项目并重试

我想知道如何在发布应用程序时将外部程序添加到我们的应用程序中.



I have an application in VS 2005 C#2.0. In the main project properties under debug option:-
Start Action- Start External Program (Path e.g. C:\\program Files\FingoX\fingo.exe)
This external program is executed 1st when we run the application through Visual studio and run successfully. This program actually called our application.

when I run this application in release mode then it through message:-
The Debug target is missing. Please build the project and retry

I want to know how to add the external program to our application while releasing the application.

推荐答案


这篇关于如何在部署/发布模式下将外部启动程序(exe)添加到项目中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 00:13