vote up 2 vote down star
1

I know that the .NET framework looks for referenced DLLs in several locations

  • Global assembly cache (GAC)
  • Any private paths added to the AppDomain
  • The current directory of the executing assembly

What order are those locations searched? Is the search for a DLL ceased if a match is found or does it continue through all locations (and if so, how are conflicts resolved)?

Also, please confirm or deny those locations and provide any other locations I have failed to mention.

flag

3 Answers

vote up 2 vote down check

Assembly loading is a rather elaborate process which depends on lots of different factors like configuration files, publisher policies, appdomain settings, CLR hosts, partial or full assembly names, etc.

The simple version is that the GAC is first, then the private paths. %PATH% is never used.

It is best to use Assembly Binding Log Viewer (Fuslogvw.exe) to debug any assembly loading problems.

EDIT http://msdn.microsoft.com/en-us/library/aa720133.aspx explains the process in more detail.

link|flag
I am not having any real assembly loading problems. I am trying to understand the search/load order from an academic perspective. – ajmastrean Sep 8 '08 at 16:12
And you're right about '%path%'... I had mistaken this from some work with p/invoke calls (I used '%path%' to simplify the 'DllImportAttribute' use). – ajmastrean Sep 8 '08 at 16:14
vote up 0 vote down

I found an article referencing the MSDN article on DLL search order that says

For managed code dependencies, the Global Assembly Cache always prevails; the local assembly in application directory will not be picked up if there is an existing (or newer with policy) copy in the GAC.

Considering this, I guess the MSDN list is correct with one addition

0. Global assembly cache
link|flag
vote up 0 vote down

"No longer is the current directory searched first when loading DLLs! This change was also made in Windows XP SP1. The default behavior now is to look in all the system locations first, then the current directory, and finally any user-defined paths."

(ref. http://weblogs.asp.net/pwilson/archive/2003/06/24/9214.aspx)

The default serach order, which can be changed by the application, is also described on MSDN: http://msdn.microsoft.com/en-us/library/ms682586.aspx

link|flag
This seems to be dependant on loading a regular Dll not a .net assembly. – Tanerax Sep 8 '08 at 15:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.