I'm trying to use T4MVC but it doesn't seem to work in my situation of having two controllers of the same name in different namespaces. I've got the following two controllers:
MyNamespace.Api.HomeController (an ApiController)
MyNamespace.Api.Test.HomeController (a regular MVC Controller)
When I run T4MVC, only the test controller is generated. If I rename the test controller to something else, then both are generated. How can I keep my naming convention and get T4MVC to recognize both controllers?