This repository was archived by the owner on Sep 21, 2018. It is now read-only.

Description
The #593 adds asp-area (in this order).
<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!