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 assembl
CIL
some_il_code.il
exe
You can use the ilasm tool.
ilasm /exe Your.il /deb=opt peverify /md /il Your.exe
ilasm compiles it, peverify verifies it.