aspnet / Templates

This repo is OBSOLETE - please see the README file for information
Other
150 stars 57 forks source link

Re-arrange asp-area tag attribute placement #597

Closed peterblazejewicz closed 8 years ago

peterblazejewicz commented 8 years ago

The https://github.com/aspnet/Templates/pull/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!

phenning commented 8 years ago

Good idea, we should do this now.

peterblazejewicz commented 8 years ago

Thanks!