I have a .net Solution that creates a DLL. It it made up of two projects. (Side information one contains a number of my special functions/classes etc. written in VB.Net. The second is some functions/classes etc. that are specific to a client and these use my classes) After some this and that and the other work I can build and rebuild the solution with no trouble. No error, warnings etc.
I check the project dependancies and they are correct. E.g. my code does not depend on the client code, but the client code does depend on my code. Build order: My code then client code. That all looks good to me.
Now just to be really sure that everything is ok I do a Build>Clean Solution. The following issues result: 1 warning (The reference componet ADODB could not be found) 6 Errors (All the errors are in my code and they center around the ADODB reference)
I can see that the ADODB reference in my code has a warning icon on it. However I just found that if I double click on the icon (in the solution explorer) The object browser is shown and the warning goes away.
If now I do two rebuilds the errors go away and everthing is happy.
Bottom line questions:
- Why is doing a Clean solution build causing these warnings and issues?
- What can I do so that these issues stop happening