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.
签署已编译的批处理文件命令集是.NET DLL什么?
.NET DLL
这个问题的答案应该做这里描述的事情。
SET INSTR_PATH=your.compiled.dll SET SNK_FILE=your.key.snk SET IL_PATH=%INSTR_PATH%.il SET SIGNED_PATH=%INSTR_PATH%.signed.dll ildasm "%INSTR_PATH%" /out:"%IL_PATH%" ilasm "%IL_PATH%" /dll /key="%SNK_FILE%" /output="%SIGNED_PATH%"