Last active
December 27, 2015 01:59
-
-
Save mikebaldry/7249022 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Bootstrapper : WindsorNancyBootstrapper { | |
private readonly IWindsorContainer _container; | |
public Bootstrapper(IWindsorContainer container) | |
{ | |
_container = container; | |
} | |
protected override Castle.Windsor.IWindsorContainer GetApplicationContainer () | |
{ | |
return _container; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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