Is there any attribute or other method of getting T4 to skip trying to transform custom methods?
Where it shows a warning saying T4MVC.tt doesn't support MyController.Method because it doesn't return a supported ActionResult type?
For example:
On a BaseController having this method:
public UrlHelper GetUrlHelper()
{
return new UrlHelper(this.ControllerContext.RequestContext);
}