1

I have solution and couple projects inside. I cannot figure out why i get this error. I cannot figure out where this is coming from so far. I was looking at all projects references and bin folders. At the end i do not see anything related to this.I tried also going to projects properties on references tab but didn't find anything related. Tried to clear/rebuild etc. What can i do more to found this and remove from the solution?

Could not load file or assembly 'ZipTools, Version=4.0.0.1, Culture=neutral, 
PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
Arie
  • 3,041
  • 7
  • 32
  • 63
  • Definitely there is some piece of code in your project that relies on ZipTools assembly. Can you please tell us when this error occurs, and in which project? Does this error appears in runtime or during compile time? – Azaz ul Haq Jan 26 '17 at 11:11
  • 1
    Maybe a DLL you are referencing have dependencies on that ZipTools – Matteo Umili Jan 26 '17 at 11:14
  • this is asp.net application i get this error on the webpage so runtime. I tried to find everything starting with name: "Zip" and haven't found anything. – Arie Jan 26 '17 at 12:32
  • In visual studio Solution Explorer view, if you expand the 'references' node of the various projects do any of them show a small red x icon? Also, as matteo noted, it could possibly be a dependency to something else you've referenced. If you're using nuget try to restore all your packages. – brettman Jan 26 '17 at 15:48

1 Answers1

-4

Make sure you added reference to dll. Make sure you have referenced all the assemblies and they are with the same version. Delete the Bin and obj folders of the project manually, Clean and Rebuild it.

CodeCaster
  • 147,647
  • 23
  • 218
  • 272
Sibiraj
  • 11
  • 2