Replaced DLL does not recognized

  • Thread starter Thread starter Wardeaux
  • Start date Start date
W

Wardeaux

All,
I have ASP.NET project called "Proj1", Proj1 calls another Class Library
Proj2 (both included in same solution) as a separate DLL. If I recompile
Proj2 separately and manually place the NEW PROJ2.DLL in the Proj1/bin
folder, Proj1 does not recognize the new DLL until I recompile Proj1 (or the
whole solution)... I even stopped and restarted IIS with no effect... any
clues?
MTIA
wardeaux
 
are you reversioning with each compile? You may have it specified to the
specific version that it can't find anymore.
 
Hi ,

Check for project build order in solution properties.

and try adding the Dll reference by selecting the class library project .

Thanks
Raghavendra
 
Found it... I declared a public CONST in PROJ2 and referenced in Proj1...
once I made the Const private and accessed with a shared method, everything
goes fine... thanks for the input, though!! :)
wardeaux
 

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