How to Disable Strong Name Verification for All .Net assembly?

后端 未结 4 646
礼貌的吻别
礼貌的吻别 2021-02-07 14:37

How to Disable .Net Strong Name Verification for All .Net assembly in system by config .net framework or IIS or project\'s config?

(click for larger image)

4条回答
  •  一整个雨季
    2021-02-07 15:09

    Try add it in regestry:

    OS x32:

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\StrongName\Verification\*,af24b530b87e22f1]
    

    OS x64:

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\StrongName\Verification\*,af24b530b87e22f1]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\StrongName\Verification\*,af24b530b87e22f1]
    

    and add it to your Web.config:

    
       
    
    

提交回复
热议问题