문제

What would be the set of batch file commands that signs an already compiled .NET DLL?

The answer to this question should do what is described here.

도움이 되었습니까?

해결책

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%"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top