尝试分发我的应用程序时加载程序集 Telerik.WinControls.UI 时出错
我需要知道如何分发该项目。当我尝试在其他电脑上运行该项目时,我收到以下错误:
Could not load file or assembly 'Telerik.WinControls.UI...'.
我该如何解决此问题?
I need know how can I distribute the project. I am receiving the following error when I attempt to run the project in other PC :
Could not load file or assembly 'Telerik.WinControls.UI...'.
What can I do to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@Jesus 是对的:其中许多控件都在您电脑上的 GAC 中,因此一切正常;在你的项目中,在依赖项部分,选择将这些DLL复制到BIN文件夹中,这样你就会找到它需要的EXE和DLL...
或者,如果您使用安装程序部署项目,请选择要安装在 GAC 中(如果它们使用强名称签名)或应用程序文件夹中的 dll。
@Jesus is right: many of these controls are in GAC on your pc so everything works; in your project, in dependencies part, select to copy these DLLs in BIN folder, so you will find the EXE and dlls it needs...
Or, if you're deploying your project with an installer, select those dlls to be installed in GAC (if they are signed with a strong name) or in your application folder.
尝试将安装项目中的
Telerik.WinControls.UI....dll
添加到应用程序文件夹中。Try to add
Telerik.WinControls.UI....dll
in your setup project into Application Folder.