I'm setting up T4MVC for MVC 2 on my website. I get 2 build errors:
No overload for method 'RenderAction' takes 3 arguments in T4MVC.cs
and
No overload for method 'Action' takes 3 arguments in T4MVC.cs
These are the ones in the T4MVC.cs file:
public static void RenderAction(this HtmlHelper htmlHelper, ActionResult result) {
var callInfo = result.GetT4MVCResult();
htmlHelper.RenderAction(callInfo.Action, callInfo.Controller, callInfo.RouteValueDictionary);
}
public static MvcHtmlString Action(this HtmlHelper htmlHelper, ActionResult result) {
var callInfo = result.GetT4MVCResult();
return htmlHelper.Action(callInfo.Action, callInfo.Controller, callInfo.RouteValueDictionary);
}
Thank you