I am creating an ASP.NET MVC 5 application in Mono (Ubuntu 14.4, Monodevelop 5.9, Mono JIT compiler version 4.0.1).
I see that some of the razor components are not recognized, eg:
@Url.Action
When I add this
<a title="Notifications" href="@Url.Action("_Listing","Home")"> Home </a>
I get this error:
System.MissingMethodException
Method 'RouteCollection.get_AppendTrailingSlash' not found.
System.Web.Mvc
is referenced from the packages. Is there anything else which is required?
Update: I tried these solutions so far:
It seems like it is a known issue but I strongly believe there shall be some hack for this to work. I tried using aspx engine also but no gain.