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

user3307548 picture user3307548 · Feb 13, 2014 · Viewed 27k times · Source

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

http://nvea.host56.com/up/726daf2c9ee0.png (click for larger image)

Answer

user1376723 picture user1376723 · Jan 13, 2015

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:

<system.web>
   <hostingEnvironment shadowCopyBinAssemblies="false" />
</system.web>