Hi,
Microsoft Visual Studio Community 2019 Version 16.9.4 Windows 10 Pro
Any clue why I cannot see the Controllers menu item? This is the Asp.net core 5.0 Web API project
MS Doc says this: https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-5.0&tabs=visual-studio#scaffold-a-controller
But I cannot see that?
Stackoverflow: https://stackoverflow.com/questions/67201201/no-controllers-menu-item-on-the-asp-net-core-5-0-web-api-project
CinamaApi.csproj
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\" />
</ItemGroup>
</Project>

