I"m using swagger-net. By default, the swagger UI will be "/swagger", how do I change it to root?
Feel like what I'm doing now is a hack
public class HomeController : Controller
{
public ActionResult Index()
{
return Redirect("/swagger");
//return View();
}
}
Found a solution. Added the below route mapping to WebApiConfig.cs