-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Closed
Description
I want to run an ASP.NET Core MVC Project, but I get the following:
Startup.cs
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
Controller:
public IActionResult Testing()
{
return View("Testing", new DummyObject() { Age = 23, Name = "Ben" });
}
And why is it hitting the index action and not the testing action ????
Upgrading doesn't work too...
Woooow ASP.NET Core, I am impressed...
Task Manager is your friend .....
Close, reopen, Upgrade packages ---> Task Manager is my friend again....
I wouldn't be annoyed if VS2017 would be freeware....
Metadata
Metadata
Assignees
Labels
No labels

