[Mono-bugs] [Bug 50752][Wis] New - Problems on embedding resource files from subdirectories to assembly
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 9 Nov 2003 12:38:49 -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 projects@saring.de.
http://bugzilla.ximian.com/show_bug.cgi?id=50752
--- shadow/50752 2003-11-09 12:38:49.000000000 -0500
+++ shadow/50752.tmp.29792 2003-11-09 12:38:49.000000000 -0500
@@ -0,0 +1,34 @@
+Bug#: 50752
+Product: Mono/MCS
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: projects@saring.de
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Problems on embedding resource files from subdirectories to assembly
+
+There's a compatibility problem when embeding resource files, which are
+located in subdirectories, to an assembly.
+
+Example:
+mcs -r:resource/test.glade ...
+
+The file is included and can be loaded, that's OK. The problem is that the
+name in the assembly's manifest is "resource/test.glade". The Microsoft
+documentation says that it needs to be "resource.test.glade". The
+directories needs to be separated by a '.' character.
+
+So it's not possible to write applications which can be compiled with both
+the Mono and the Microsoft compiler, because the resources in the assembly
+are having different names.
+
+It would be great if this could get fixed ...