[Mono-bugs] [Bug 65478][Blo] Changed - Type.GetType("Gtk.Window,gtk-sharp") should not work with .net Framework's GAC

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 21 Nov 2004 03:21:30 -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 josephmolnar@hotmail.com.

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

--- shadow/65478	2004-09-07 16:33:05.000000000 -0400
+++ shadow/65478.tmp.23110	2004-11-21 03:21:30.000000000 -0500
@@ -1,21 +1,33 @@
 Bug#: 65478
 Product: Mono: Class Libraries
 Version: unspecified
-OS: 
-OS Details: 
+OS: unknown
+OS Details: Window XP Pro SP 2
 Status: NEW   
 Resolution: 
-Severity: 
-Priority: Normal
+Severity: Unknown
+Priority: Blocker
 Component: CORLIB
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: mkestner@ximian.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
 Summary: Type.GetType("Gtk.Window,gtk-sharp") should not work with .net Framework's GAC
 
 On the MS runtime, if an assembly is installed in the GAC, you must provide
 a fully qualified assembly name (e.g.  name,key,culture) for the lookup to
 succeed.  Mono currently allows partial name lookups for GAC'd assemblies.
+
+------- Additional Comments From josephmolnar@hotmail.com  2004-11-21 03:21 -------
+Have to be careful on this is addressed. There is another bug, which 
+I will submit separately, where it isn't allowing the loading of a 
+type of the form 'Gtk.Window, gtk-sharp' when the assembly gtk-sharp 
+is a referenced assembly of the currently running app/assembly. MS's 
+CLR will allow the loading of a partially qualified name if the 
+assembly component of the type is referenced in the running instance 
+of the application (probably application boundary based).
+
+For an application/framework I'm trying to port to mono, I'm finding 
+this a major blocking entity.