I am unable to get Intellisense for all tags (e.g. asp-for
asp-action
, etc.) I'm running Visual Studio 2017.
My .csproj
file includes the following packages:
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.TagHelpers" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Tools" Version="1.1.0-preview4-final" Type=""/>
<PackageReference Include="Microsoft.AspNetCore.Razor" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Runtime" Version="1.1.0" />
and my _ViewImports.cshtml
file includes the following:
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
Is there something I need to edit or add?