[Mono-bugs] [Bug 50752][Nor] New - Problems on embedding resource files from subdirectories to assembly

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 19 Jan 2004 16:46:18 -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 bmaurer@users.sf.net.

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

--- shadow/50752	2004-01-19 16:46:18.000000000 -0500
+++ shadow/50752.tmp.10091	2004-01-19 16:46:18.000000000 -0500
@@ -0,0 +1,43 @@
+Bug#: 50752
+Product: Mono/Compilers
+Version: unspecified
+OS: unknown
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Normal
+Component: C#
+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 ...
+
+------- Additional Comments From projects@saring.de  2003-11-09 12:46 -------
+Forgot to mention: tested on Linux and WinXP with Mono 0.28.
+
+------- Additional Comments From bmaurer@users.sf.net  2004-01-19 16:46 -------
+I cant repro the replacing with '.' thing on my csc. It just uses the
+name w/o the path on mine...
+
+But we should do SOMETHING