[Mono-bugs] [Bug 78294][Nor] New - AssemblyCulture attribute is not supported

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu May 4 12:44:53 EDT 2006


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 marek.safar at seznam.cz.

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

--- shadow/78294	2006-05-04 12:44:53.000000000 -0400
+++ shadow/78294.tmp.21697	2006-05-04 12:44:53.000000000 -0400
@@ -0,0 +1,61 @@
+Bug#: 78294
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs at ximian.com                            
+ReportedBy: marek.safar at seznam.cz               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: AssemblyCulture attribute is not supported
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+
+
+Steps to reproduce the problem:
+1. compile following code with option /t:library
+
+using System;
+using System.Reflection;
+
+[assembly:AssemblyCulture("en-AU")]
+
+public class LibraryCode
+{
+   public string GetName()
+   {
+      Assembly a = Assembly.GetExecutingAssembly();
+      return a.GetName().ToString();
+   }
+}
+
+
+Actual Results:
+
+Missing .locale metadata.
+
+Expected Results:
+
+Output assembly contains .locale metadata like this
+
+.assembly 'foo'
+{
+  .hash algorithm 0x00008004
+  .ver 0:0:0:0
+  .locale = (65 00 6E 00 2D 00 41 00 55 00 00 00 )  // e.n.-.A.U...
+}
+
+
+How often does this happen? 
+
+
+Additional Information:


More information about the mono-bugs mailing list