0

Given

  • we have a reference to a not strong named assembly
  • a non strong named version of that existing in the bin directory of an app.
  • a strong named version of that assembly with same version number installed in the GAC

When that assembly is loaded will we get the on from the filesystem or the one from the GAC?

Simon
  • 33,714
  • 21
  • 133
  • 202
  • See http://stackoverflow.com/questions/49972/in-what-order-are-locations-searched-to-load-referenced-dlls – Marcel N. Jan 01 '13 at 23:30
  • @marceln diff scenario. that answer doesnt address the "non strong named reference" case – Simon Jan 01 '13 at 23:34

1 Answers1

0

Assuming the assembly probing path has not been altered in the configuration, the assembly located in your application's directory will be loaded.

Mike Strobel
  • 25,075
  • 57
  • 69