[Mono-bugs] [Bug 69292][Wis] New - Assembly.Load should return the most current version of an assembly

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 9 Nov 2004 17:10:44 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by duncan@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=69292

--- shadow/69292	2004-11-09 17:10:44.000000000 -0500
+++ shadow/69292.tmp.1582	2004-11-09 17:10:44.000000000 -0500
@@ -0,0 +1,42 @@
+Bug#: 69292
+Product: Mono: Runtime
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: duncan@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Assembly.Load should return the most current version of an assembly
+
+I have 2 versions of gtk-sharp in my GAC:
+
+polysemy:/usr/lib/mono/gac/gtk-sharp $ find ./
+./
+./1.0.0.0__35e10195dab3c99f
+./1.0.0.0__35e10195dab3c99f/gtk-sharp.dll
+./1.0.0.0__35e10195dab3c99f/gtk-sharp.dll.config
+./2.0.0.0__35e10195dab3c99f
+./2.0.0.0__35e10195dab3c99f/gtk-sharp.dll
+./2.0.0.0__35e10195dab3c99f/gtk-sharp.dll.config
+
+
+When I call monop -r:gtk-sharp, I assume that it'll run on the 2.0.x
+version of the assembly. Instead, it gives me 1.0.0.0.
+
+polysemy:/usr/lib/mono/gac/gtk-sharp $ monop -r:gtk-sharp
+ 
+Assembly Information:
+gtk-sharp
+Version=1.0.0.0
+Culture=neutral
+PublicKeyToken=35e10195dab3c99f
+
+The problem affects mono-find-provides as well.