I have a ASP.NET Core Web API project, and the following controller:
[Route("/api/v0.1/controller")]
[ApiController]
public class MyController : ControllerBase
{
[HttpGet("/test")]
public ActionResult Test() { return null; }
}
but when I run the project, at /api/v0.1/controller/test I get "page not found" and I don't see where I made a mistake.