Wednesday, October 23, 2019

You may need the EnableEndpointRouting setting in .NET Core 3.0.0 to get the MVC stuff to behave.

Inside ConfigureServices in Startup.cs have...

services.AddMvc(options =>
{
   options.EnableEndpointRouting = false;

No comments:

Post a Comment