I've added the following namespace to my Views web.config file:
<add namespace="System.Web.Mvc.Html5" />
Now the issue is that in the Views, I can only use the types using the fullname:
@System.Web.Mvc.Html5.InputTypes.Html5TextBox()
I'd like to be able to do:
@InputTypes.Html5TextBox()
How can I do that ?