Hi,
I want to know that what is the meaning of AL.EXE and RESGEN.EXE.?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Mar 20, 2012, 11:43 PM
AL means Assembly Linker
It generates a file with an assembly manifest from one or more files that are either modules or resource files. A module is a MSIL file that does not have an assembly manifest.
please Refer : http://msdn.microsoft.com/en-us/library/c405shex%28v=vs.80%29.aspx
RESGEN : it is Resource File Generetor
it converts .txt files and .resx (XML-based resource format) files to CLR binary .resources files that can be embedded in a runtime binary executable or compiled into satellite assemblies.
please refer :http://msdn.microsoft.com/en-us/library/ccec7sz1%28v=vs.80%29.aspx
hope this help.