I’ve created a custom module for IIS that I want to run some tests on. I created a new directory inside inetpub/wwwroot called demo and added a new site called MDemo. I added me DLL to the /bin folder. This directory now contains 2 files: default.aspx and bin/mydll.
I went to Modules on the site and tried to “Add Managed Module”. My module is not showing up in the list. I tried to add it to the GAC but I can’t figure out how. I attempted to use Mscorcfg.msc but .NET Framework Configuration does not show up as an option.
How can I get this DLL to show up in the list and add as a managed module?
The term “Managed Module” means that it is in the GAC. You can get the dll into the GAC by using GacUtil or by creating a “Setup Project” (under “Other Project Types”) in Visual Studio.
See http://blogs.iis.net/carlosag/archive/2008/11/10/creating-a-setup-project-for-iis-extensions-using-visual-studio-2008.aspx