Created
January 27, 2016 03:47
-
-
Save dcomartin/a8568204bca528a94d45 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
public class MyNancyBootstrapper : DefaultNancyBootstrapper | |
{ | |
protected override void ConfigureApplicationContainer(TinyIoCContainer container) | |
{ | |
container.Register<IResourceLinker>( | |
(x, overloads) => | |
new ResourceLinker(x.Resolve<IRouteCacheProvider>(), | |
x.Resolve<IRouteSegmentExtractor>(), x.Resolve<IUriFilter>())); | |
base.ConfigureApplicationContainer(container); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment