Open
Description
I have an asp.net core project that includes Web API controllers that inherit from ControllerBase
, for example:
[Route("api/customers")]
[ApiController]
public class CustomersController : ControllerBase
{}
R4MVC does not seem to recognize these controllers and does not generate code for them. Is this intentional? If I change the code to inherit from Controller
instead of ControllerBase
R4MVC includes the controller.
Is there any way to force R4MVC to include these controllers in the code generation process?