How to copy assemblies
-
Hi all, Please let me know... How to copy assemblies (CrystalDecisions.*) located in “C:\windows\assemblies\” to my project “bin” folder. Many Thanks!! Jagadeesh
-
Hi all, Please let me know... How to copy assemblies (CrystalDecisions.*) located in “C:\windows\assemblies\” to my project “bin” folder. Many Thanks!! Jagadeesh
They are already in GAC right as shared assemblies?
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Hi all, Please let me know... How to copy assemblies (CrystalDecisions.*) located in “C:\windows\assemblies\” to my project “bin” folder. Many Thanks!! Jagadeesh
Using commandprompt you can do this.
cd windowsdir
cd assembly
cd GAC
cd yourassemblyfolder
......
-
Using commandprompt you can do this.
cd windowsdir
cd assembly
cd GAC
cd yourassemblyfolder
......
Hi, I want to copy these assemblies to my bin directory, so that i can upload them to my remote server using FTP. I am not sure this can help me but just a try ;) *** My actual problem is When i uploaded my web site (to remote server) containing Crystal reports it is showing the following error Parser Error Message: Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Please let me know if any one know how to resolve it. Regards, Jagadeesh -- modified at 8:18 Monday 6th August, 2007
-
Hi, I want to copy these assemblies to my bin directory, so that i can upload them to my remote server using FTP. I am not sure this can help me but just a try ;) *** My actual problem is When i uploaded my web site (to remote server) containing Crystal reports it is showing the following error Parser Error Message: Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Please let me know if any one know how to resolve it. Regards, Jagadeesh -- modified at 8:18 Monday 6th August, 2007
Jagadeesh Jupalli wrote:
I want to copy these assemblies to my bin directory,
Yes that is what I shown there. Go to that directory, use DOS commands to perform copy.
Jagadeesh Jupalli wrote:
Parser Error Message: Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Please let me know if any one know how to resolve it.
CrystalReports will always be looking for assemblies in GAC I think. We had the similar problem and rectified by copying assemblies to GAC of server. You can try that. I don't think that copying these assemblies to your application bin will solve this problem.
-
Jagadeesh Jupalli wrote:
I want to copy these assemblies to my bin directory,
Yes that is what I shown there. Go to that directory, use DOS commands to perform copy.
Jagadeesh Jupalli wrote:
Parser Error Message: Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Please let me know if any one know how to resolve it.
CrystalReports will always be looking for assemblies in GAC I think. We had the similar problem and rectified by copying assemblies to GAC of server. You can try that. I don't think that copying these assemblies to your application bin will solve this problem.
Thank you Navaneeth I will contact my Hosting company's Customer care about it. Regards, Jagadeesh