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开发者_如何学JAVA?
@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.
Try to add Telerik.WinControls.UI....dll
in your setup project into Application Folder.
精彩评论