[Mono-bugs] [Bug 33196][Min] New - AppDomain.GetAssemblies () always return the same

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
3 Nov 2002 02:56:43 -0000


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 gonzalo@ximian.com.

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

--- shadow/33196	Sat Nov  2 21:56:43 2002
+++ shadow/33196.tmp.22020	Sat Nov  2 21:56:43 2002
@@ -0,0 +1,60 @@
+Bug#: 33196
+Product: Mono/Runtime
+Version: unspecified
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: gonzalo@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: AppDomain.GetAssemblies () always return the same
+
+Description of Problem:
+AppDomain.GetAssemblies always returns the loaded assemblies on runtime
+initialization. Assemblies loaded after that, are not listed.
+
+
+Steps to reproduce the problem:
+1. Compile and run the attached program
+
+Actual Results:
+Loaded assemblies:
+mscorlib
+appdomainevents
+
+Loaded: System.Xml
+Loaded: System
+Loaded: System.Drawing
+Loaded: System.Web
+
+Loaded assemblies:
+mscorlib
+appdomainevents
+
+Expected Results:
+Loaded assemblies:
+mscorlib
+appdomainevents
+
+Loaded: System.Xml
+Loaded: System
+Loaded: System.Drawing
+Loaded: System.Web
+
+Loaded assemblies:
+mscorlib
+appdomainevents
+System.Xml
+System
+System.Drawing
+System.Web
+
+Additional Information:
+mono_domain_assembly_open () seems not to be used.