在 IDE 与 signtool.exe 中签署 C# 程序集
Signing C# Assembly in IDE vs with signtool.exe
我想我已经知道这个问题的答案了,但我还是会问的。第三方供应商建议我使用 VS2010 签名 属性 选项卡对我的 C# EXE 进行签名。但是,我的构建过程目前混淆了我的 EXE,然后使用 signtool.exe 和 Comodo 证书对其进行签名。
我说的是否正确,我已经在做 VS 中的项目签名选项卡已经提供的一切?
However, my build process currently obfuscates my EXE and then signs it with signtool.exe and a Comodo certificate
我假设您指的是 代码签名 而不是强命名。
Am I correct in saying that I'm already doing whatever it is that the project signing tab in VS already offers?
如果您指的是签名 选项卡中的清单签名,那么是。
两者都会导致清单签名(代码签名),并且在混淆的情况下,必须在混淆步骤之后执行(因为后者删除了签名)。
告诉我更多
Brower, J, "Code Signing in Visual Studio", https://www.linkedin.com/pulse/code-signing-visual-studio-jason-brower, 检索 2016/11/22
微软,"Signing Page, Project Designer",https://msdn.microsoft.com/en-us/library/0k50fs3b.aspx,2016/11/22
我想我已经知道这个问题的答案了,但我还是会问的。第三方供应商建议我使用 VS2010 签名 属性 选项卡对我的 C# EXE 进行签名。但是,我的构建过程目前混淆了我的 EXE,然后使用 signtool.exe 和 Comodo 证书对其进行签名。
我说的是否正确,我已经在做 VS 中的项目签名选项卡已经提供的一切?
However, my build process currently obfuscates my EXE and then signs it with signtool.exe and a Comodo certificate
我假设您指的是 代码签名 而不是强命名。
Am I correct in saying that I'm already doing whatever it is that the project signing tab in VS already offers?
如果您指的是签名 选项卡中的清单签名,那么是。
两者都会导致清单签名(代码签名),并且在混淆的情况下,必须在混淆步骤之后执行(因为后者删除了签名)。
告诉我更多
Brower, J, "Code Signing in Visual Studio", https://www.linkedin.com/pulse/code-signing-visual-studio-jason-brower, 检索 2016/11/22
微软,"Signing Page, Project Designer",https://msdn.microsoft.com/en-us/library/0k50fs3b.aspx,2016/11/22