I am trying to branch an open source program, that branched from another.. the problem is the branch I’m trying to read from only provide .cs files, with no reference or documents to how they were implemented and with which reference.
VS returns errors saying there are missing directive or assembly reference, but the namespaces used in the program are so vague (Queue, Request, Response, CookieStore) it is impossible to locate the correct reference in Google.
Is there a way to locate the reference in a .cs file? Or maybe, do you recognize the reference in question?
Do u have precompiled dll by any chance (maybe release build)? if you do, you can use .NET Reflector to see what’s the name of the namespace that it is trying to load. That might help to get closer to finding your External refs.
Most of the projects should have continuous build, so if the refs are messed up, it should be broken.