Strong Name Validation Failed

前端 未结 12 872
旧巷少年郎
旧巷少年郎 2020-12-05 07:07

Two machines. Both with .NET 3.5 and the VS 2008 VC++ SP1 redistributables

A single exe which uses two signed DLLs, one in C++/CLI and one in C#

The exe load

12条回答
  •  情深已故
    2020-12-05 07:48

    Open the command prompt as administrator and enter following commands:

    reg DELETE "HKLM\Software\Microsoft\StrongName\Verification" /f
    reg ADD "HKLM\Software\Microsoft\StrongName\Verification\*,*" /f
    reg DELETE "HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification" /f
    reg ADD "HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification\*,*" /f
    

提交回复
热议问题