ILASM Resources?

S

Sam Schutte

Hello,

I have a project I'm working on where I have to make a small change to
an IL file, then recompile it to put it on the client workstation.
Problem is, when I decompile the DLL using ILDASM, it spits out 5
resource files (.res, .resources), as well as the .il file. When I
try to rebuild the DLL with ILASM, it states (in the help) that you
can only specify one resource file at a time. How do I add all 5 of
these resource files to the final DLL? I've tried running it with
each resource file, but then it fails to write the output file...any
hints?

s.
 
H

Huihong

If you do ilasm in the same directory, all managed
resources will be automatically put into the final
assembly. /res option is for win32 native resource with
extension of .res, each exe or dll only have one win32
resource (e.g., app icon), but could have several manaed
resources (.resources), to check whetehr resources have
been linked, you can use our tool,
http://www.remotesoft.com, click Resources node.

Huihong
Remotesoft, Inc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top