开发者

.Net assembly resolving confusion

开发者 https://www.devze.com 2023-01-02 11:53 出处:网络
After reading through the MSDN article How the Runtime Locates Assemblies a开发者_运维百科nd also reading this, I am still unsure about how weakly named assemblies are resolved at runtime.

After reading through the MSDN article How the Runtime Locates Assemblies a开发者_运维百科nd also reading this, I am still unsure about how weakly named assemblies are resolved at runtime.

Eg. if I have a reference to some dll file in my project, I compile and deploy, will it pick up a new version of the referenced dll file if I just replace the old one which was actually referenced at compile time? Does it matter if the reference in the project file specifies the version etc. of the referenced assembly?

Any enlightenment welcome


If the assembly is not found in the GAC then the CLR will search for it in the "probing path". Which by default is only the directory that contains the EXE. It only looks for a match on the assembly name and will stop searching on the first match.

It then checks the [AssemblyVersion] number. If it doesn't match you'll get an exception, it won't keep looking for another assembly with the same name. Whenever you have resolution trouble, you'll want to use the Fuslogvw.exe utility. It shows you exactly where the CLR looked and what went wrong.


The best place that I've found to learn about this is in Grimes Fusion Workshop as can be found here. It is very comprehensive while still easy to understand.


The answer to your questions is yes as long as long as you have Specific Version set to False in the properties for the reference to the assembly.


If version is not mentioned it will pick up the reference, if the version is mentioned it will try to find and load the assembly matching the signature with version mentioned. if not found it will throw an exception. To resolve this you can do assembly binding redirection.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号