Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Duplicate Assemblies in the GAC (server vs. localhost)

Status
Not open for further replies.

Mike555

Technical User
Feb 21, 2003
1,200
US
I have an assembly named AccountingLogic.dll which is referenced by over 15 different ASP.NET applications. On my production server that runs all the .NET apps, there are multiple versions of this assembly in the GAC, all with the same Public Key Token. My older sites are using older versions of the .dll, and my newer sites are using a newer version. The GAC on the production server looks somethinglike this...

Global Assembly Name Version Public Key Token
AccountingLogic.dll 1.1.0.0 b35F047de3de
AccountingLogic.dll 1.1.5.0 b35F047de3de
AccountingLogic.dll 1.2.0.0 b35F047de3de

The production server works fine, and is able to successfully hold multiple assembly versions in the GAC. However, my localhost cannot seem to do this. Whenever I have more than one version of the assembly in the GAC of my localhost, I encounter all kinds of weird problems when running apps locally. Essentially it seems like I can only have one version of AccountingLogic.dll in the GAC of my localhost, while the server can have an multiple versions. Why is this? Why can the server have different versions but my localhost cannot?

Thanks.
 
Where is the asp.net temporary folder located?
 
Is this it? If so, what do I need to do here? Thanks.

C:\windows\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top