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.
2.1m questions
2.1m answers
60 comments
57.0k users