Nancy.Linker: NancyFX URI Builder
If you are using NancyFX, likely at some point you needed to generate a URI of another route in your application. When I first ran into this problem, I was looking for some type of built-in URI builder, similar to what you would do with ASP.NET MVC’s Url.Action(). Nancy.Linker Luckily, I found Nancy.Linker by Christian Horsdal. Simple URI builder for named Nancy routes with optional pass through of query parameters. It’s really that simple. What it allows you to do is generate URI’s based on the names given to your routes. If you are not naming your routes yet, you… Read More »Nancy.Linker: NancyFX URI Builder