Dependency problem

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I have a project that I have been messing with for a while.

I get a message in my task list that says:
"The dependency 'ICSharpCode.SharpZipLib' could not be found."

I added this library in a while ago but removed it. I can't find where
the dependency is. The solution builds just fine. There are 3 projects
in the solution. Where do I go to find where this dependency is?

Thanks
Chris
 
Chris said:
I get a message in my task list that says:
"The dependency 'ICSharpCode.SharpZipLib' could not be found."

I added this library in a while ago but removed it. I can't find where
the dependency is. The solution builds just fine. There are 3 projects
in the solution. Where do I go to find where this dependency is?

I am not sure if I understand your question correctly. SharpZipLib can be
downloaded here:

The Zip, GZip, BZip2 and Tar Implementation For .NET
<URL:http://www.icsharpcode.net/OpenSource/SharpZipLib/>

You can remove the reference to a library by opening the project's
"References" folder in the solution explorer and pressing the Delete key.
 
I think he is asking how to find the line of code that is making the
reference so that he can alter his code and remove the need for the
library.
 
Bruce Wood said:
I think he is asking how to find the line of code that is making the
reference so that he can alter his code and remove the need for the
library.

After removing the reference from the project the code should cause
compile-time errors which are shown in the tasks window. Double-clicking
the entries will show the accoding line in the code.
 
Herfried said:
I am not sure if I understand your question correctly. SharpZipLib can
be downloaded here:

The Zip, GZip, BZip2 and Tar Implementation For .NET
<URL:http://www.icsharpcode.net/OpenSource/SharpZipLib/>

You can remove the reference to a library by opening the project's
"References" folder in the solution explorer and pressing the Delete key.

Sorry I wasn't clear. I know what the SharpZipLib is, I use it in a
different project. I don't use it in this project. I may have at one
point, but it has been removed.

I found which of my 3 projects is causing the issue, SubForms. This
project has a reference to another project (Utility) that is part of the
3. If I remove the reference the error goes away. The project Utility
has no reference to SharpZipLib anywhere that I can find.... SubForms
has nothing in it yet, it is an empty project that is there as a place
holder for some work yet to be done. So how can adding the reference to
Utility in Subforms cause the error to appear?

Anyhow as I was finishing writing this I readded the reference to
Utility and now the error is still gone... No clue what has happened....

Thanks for trying to help though.
Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top