What happened to System.Web.Mvc.dll?

A colleague emailed me an example ASP.NET MVC project that will not be built on my machine because it contains a link 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 you can create new ASP.NET MVC web applications. However, they do not contain references to this assembly.

So, does anyone know in which versions of ASP.NET MVC this assembly exists, and what should I do to build this project?

Edit

How do I know which version of ASP.NET MVC is installed on my computer?

+5
source share
4 answers

MVC just sent RTM. You may be using an earlier version. Get the latest version.

ASP.NET MVC 1.0 System.Web.Mvc.dll

+7

, MVC :

\Microsoft ASP.NET System.Web.Mvc.dll.

, , .

:

  • Visual Studio System.Web.Mvc( "" ).
  • " "
  • System.Web.MVC .NET. .
  • .

.

+4

: http://www.microsoft.com/web/

And download the web platform installer and install MVC and other materials through it.

+3
source

Here is my answer -

The best way is to use the NuGet package manager. Just upgrade below MVC package and it should work

Why is System.Web.Mvc not listed in the Add Links list?

0
source

All Articles