I compile a http module named MyHttpModule.dll with a class MyHttpLogger inherited from IHttpModule, target to .net Framework 4.
"\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\x64\gacutil.exe" /i MyHttpModule.dll //run successfully.
I can see the dll in C:\Windows\Microsoft.NET\assembly\GAC_MSIL\LyxonHttpModule\v4.0_1.0.0.0__5d332fce66d3892e with correct file size and last modified time.
When I try to add managed module in IIS manager of Win10, it report ----- The specified type does not exist in the Global Assembly Cache (GAC). Please install the associated assembly into the GAC.
I can add this http module by appcmd but it seem not be loaded by IIS.
What should I do now?