How to maintain one set of DLLs with multiple solutions?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
My application has multiple solutions in the application tier and my web application has file references to some of the projects in these solutions. At run time, I dont want my web application to look for the dlls in its bin folder, instead I want to maintain one common path where I can dump all the dlls. All this I want to do with the 'Copy Local' property of my references set to 'false'. Is this possible, please help. Thanks.
 
A common way to do this is to put all those assemblies in the GAC. However,
that requires that they all have strong names.

Nonnie said:
Hi,
My application has multiple solutions in the application tier and my web
application has file references to some of the projects in these solutions.
At run time, I dont want my web application to look for the dlls in its bin
folder, instead I want to maintain one common path where I can dump all the
dlls. All this I want to do with the 'Copy Local' property of my references
set to 'false'. Is this possible, please help. Thanks.
 
Back
Top