Closed peterblazejewicz closed 8 years ago
The https://github.com/aspnet/Templates/pull/593 adds asp-area (in this order).
asp-area
<li><a asp-controller="Home" asp-area="" asp-action="Index">Home</a></li>
Can the order be:
<li><a asp-area="" asp-controller="Home" asp-action="Index">Home</a></li>
The tag attributes should follow MVC framework mantra: area/controller/action I think. Thanks!
Good idea, we should do this now.
Thanks!
The https://github.com/aspnet/Templates/pull/593 adds
asp-area
(in this order).Can the order be:
The tag attributes should follow MVC framework mantra: area/controller/action I think. Thanks!