I have a code written in CIL. Let's say, a file called some_il_code.il holds it. I want to compile it to create a managed exe assembly.
CIL
some_il_code.il
exe
How do I achieve that?
You can use the ilasm tool.
ilasm /exe Your.il /deb=opt peverify /md /il Your.exe
ilasm compiles it, peverify verifies it.
1.4m articles
1.4m replys
5 comments
57.0k users