I am running MonoDevelop on OS X to develop an ASP.NET web application using Nancy. I downloaded the \[code\]nancy.dll\[/code\] file and referenced it from my web project.Inside the \[code\]web.config\[/code\] I added the line:\[code\]<httpHandlers> <add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /></httpHandlers>\[/code\]to the \[code\]system.web\[/code\] section, as described in the documentation of Nancy. However, if I try to run my application, my browser comes up and I see an ASP.NET error message created by Mono that tells me that it\[quote\] Failed to load httpHandler type `Nancy.Hosting.Aspnet.NancyHttpRequestHandler'\[/quote\]Any idea of what I am doing wrong? Why is Mono not able to find the DLL, although it is there?