A colleague emailed me an example ASP.NET MVC project that won't build on my machine as it contains a reference to System.Web.Mvc.dll
In the .csproj file:
<Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
I have VS2008 SP1 installed and can create new ASP.NET MVC web applications. However these don't include a reference to this assembly.
So, does anyone know in what version(s) of ASP.NET MVC this assembly exists, and what I should do to get this project to build?
Edit
How can I find out what version of ASP.NET MVC is installed on a machine?