Packaging .resx files into ONE .dll

  • Thread starter Thread starter qh0st
  • Start date Start date
Q

qh0st

Hi all.

I have an windows form application that will have multiple language
..resx files per form. Is there anyway I can bundle these .resx files
into ONE .dll per form? If not, do you have any suggestions as to how
these .resx files should be packaged with the application? Thanks in
advance.

- Lay
 
If you want these .resx files to be embedded into the dll for the
project then all you have to do is set the embedded property of these
..resx files to true. If you want these .resx files to reside in a
seperate assembly then you will need to use either the compiler csc.ece
with the /resource option, or the assembly linker al.exe to embed the
..resx files into the seperate assembly.

Sijin Joseph
http://www.indiangeek.net
http://weblogs.asp.net/sjoseph
 
Back
Top