add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/sn.md Normal file
View File

@@ -0,0 +1,20 @@
# sn
> Mono StrongName 工具,用于签名和验证 IL 程序集。
> 更多信息:<https://manned.org/sn>。
- 生成一个新的 StrongNaming 密钥:
`sn -k {{path/to/key.snk}}`
- 使用指定的私钥重新签名程序集:
`sn -R {{path/to/assembly.dll}} {{path/to/key_pair.snk}}`
- 显示用于签名程序集的私钥的公钥:
`sn -T {{path/to/assembly.exe}}`
- 将公钥提取到文件中:
`sn -e {{path/to/assembly.dll}} {{path/to/output.pub}}`