Global.asax.cs
public class MvcApplication : System.Web.HttpApplication | |
{ | |
public static void RegisterRoutes(RouteCollection routes) | |
{ | |
// ... | |
routes.MapRoute( | |
"less", | |
"less.mvc/{action}/{name}.css", | |
new { controller = "Less", action = "Show" } | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment