Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
で書かれたコードがありますCIL。たとえば、というファイルsome_il_code.ilがそれを保持しているとします。exeコンパイルしてマネージドアセンブリを作成したいと思います。
CIL
some_il_code.il
exe
どうすればそれを達成できますか?
ilasmツールを使用できます。
ilasm /exe Your.il /deb=opt peverify /md /il Your.exe
ilasmはそれをコンパイルし、peverifyはそれを検証します。