In the readme, there is a sample example:
public class YourWebApplication : NinjectHttpApplication
{ // […]
public override IKernel CreateKernel()
{ // […]
var kernel = new StandardKernel();
kernel.AutoLoadModules("~/bin");
return kernel;
}
}
But the AutoLoadModules extension method is not defined in this project.