I\'m trying to create a ASP.NET Core MVC test app running on OSX using VS Code. I\'m getting a \'view not found\' exception when accessing the default Home/index (or any oth
Visual Code With dotnet version 2.2.300 gave an error message, so not a runtime exception.
My controller was derived from ControlerBase instead of Controller. So, I had to change ControllerBase to Controller.