0

I would like to export a .NET Windows application as exe. I would normally pick up the EXE file from the bin\Debug folder and run directly in the development machine. In this case, the application doesn't show any error.

But when I copy the same .exe to another machine and try to run the application, I get the following error. Can somebody help me to identify what I'm missing here?

Error

I'm very new to .NET Windows applications.

4

2 回答 2

2

看起来您的应用程序依赖于尚未部署到目标计算机的第三方程序集。您必须确保将这些第三方依赖项部署在运行您的程序的任何机器上。您的程序可以在您的开发机器上运行,因为您可能在为第三方产品安装开发工具时安装了必要的程序集。

该错误消息表明您的应用程序依赖于 Crystal Reports。因此,您可能需要部署 Crystal Reports 可再发行包。一旦你清除了它,可能还有其他依赖关系需要解决。

于 2013-04-29T10:55:02.507 回答
1

试一试....抓住有问题的代码,并运行它,找出它为什么抛出错误,然后从那里发布另一个问题/或编辑你的问题,我相信这是更好的方法。- 它会以比错误更详细的方式告诉您出了什么问题,以及最有可能的原因。

于 2013-04-29T20:50:37.530 回答