I've just installed Visual Studio 2012 and started checking out mvc 4 and Web Api. I've created a new Mvc 4 app with Web API. Based on some examples and tutorials I started copnfiguring my routes with:
routes.MapHttpRoute(
name: "Controller only",
routeTemplate: "api/{controller}"
);
However, that results in an error that RouteCollection doesn't contain a definition for MapHttpRoute. Am I missing some dlls installed?
As far as I could see I have all the right dlls and version installed.
Thanks in advance!
EDIT: I have solved it. The problem was a missing reference to the System.Web.Http.