is copying DLL's to the framework folder enough?

  • Thread starter Thread starter Daniel Rimmelzwaan
  • Start date Start date
D

Daniel Rimmelzwaan

I am working on a Microsoft CRM integration C# project, and when I just copy
their DLL's to my framework folder, I can set references to it in the VS.NET
solution explorer.

However, when I browse to my aspx page, it tries t get something from my
local computer's folder, and I am wondering if I need to do more than just
copy the DLL's to the framework folder.

Any help would be nice. Thanks
Daniel.
 
You should not need to copy extra DLLs to the .NET Framework folder. If the
assemblies are not installed in the global assembly cache, then you will
need to copy them along with your app into the /bin directory.
-mike
MVP
 
Back
Top