with this code
usingMicrosoft.AspNetCore.Mvc;namespaceProjectNetCore.Controllers{publicclassHomeController:Controller{publicIActionResultIndex(){returnView();}}}
I'm getting this message when I try to compile the project:"'Controller' is a namespace but is used like a type", the word"Controller" is flagged as an error and show an error in the "View()" call: "The name "View" does not exists in the current context".
I've been having this error just since last thursday with the last update of the C# Visual Studio Code extension...