How to compile CIL code?

后端 未结 1 1850
粉色の甜心
粉色の甜心 2021-01-06 14:23

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

相关标签:
1条回答
  • 2021-01-06 14:56

    You can use the ilasm tool.

    ilasm /exe Your.il /deb=opt
    peverify /md /il Your.exe
    

    ilasm compiles it, peverify verifies it.

    0 讨论(0)
提交回复
热议问题