Skip to content

Instantly share code, notes, and snippets.

@mikebaldry
Last active December 27, 2015 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikebaldry/7249022 to your computer and use it in GitHub Desktop.
Save mikebaldry/7249022 to your computer and use it in GitHub Desktop.
class Bootstrapper : WindsorNancyBootstrapper {
private readonly IWindsorContainer _container;
public Bootstrapper(IWindsorContainer container)
{
_container = container;
}
protected override Castle.Windsor.IWindsorContainer GetApplicationContainer ()
{
return _container;
}
}
'Nancy.ViewEngines.ViewEngineApplicationStartup' is waiting for the following dependencies:
- Service 'System.Collections.Generic.IEnumerable`1[[Nancy.ViewEngines.IViewEngine, Nancy, Version=0.21.1.0, Culture=neutral, PublicKeyToken=null]]' which was not registered.
- Service 'Nancy.ViewEngines.DefaultViewLocator' which was registered but is also waiting for dependencies.
'Nancy.ViewEngines.DefaultViewLocator' is waiting for the following dependencies:
- Service 'System.Collections.Generic.IEnumerable`1[[Nancy.ViewEngines.IViewEngine, Nancy, Version=0.21.1.0, Culture=neutral, PublicKeyToken=null]]' which was not registered.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment