Generating links with UrlHelper outside of ASP.NET Core
I’ve been trying to solve the issue of generating links with UrlHelper outside of ASP.NET Core. The problem I was facing was wanting to use UrlHelper while not directly in the context of ASP.NET Core. There are two specific scenarios were: Generate a link for an ASP.NET Core MVC route that I was going to be using in an email. This is a separate process that is not running ASP.NET Core but does have references to the assemblies that contain the controllers. Generate a link for an ASP.NET Core MVC route from a Nancy Module running in a Katana self… Read More »Generating links with UrlHelper outside of ASP.NET Core