开发者

Where can I find System.Web.MVC dll in a system where MVC 3 is installed?

开发者 https://www.devze.com 2023-02-20 14:08 出处:网络
I want to know where I can find the System.Web.MVC dll in a system, where MVC 3 is already installed. I w开发者_JAVA百科ant to it on an X64-based system.

I want to know where I can find the System.Web.MVC dll in a system, where MVC 3 is already installed. I w开发者_JAVA百科ant to it on an X64-based system.

Any idea how to get them?


the default folder would be like the following:

MVC 5

C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Stack 5\Packages\ Microsoft.AspNet.Mvc.5.0.0\lib\net45\System.Web.Mvc.dll

MVC 4

C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 4\Assemblies\System.Web.Mvc.dll

MVC 3

C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 3\Assemblies\System.Web.Mvc.dll

MVC 2

C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 2\Assemblies\System.Web.Mvc.dll


If you have found this question because you don't see System.Web.MVC.dll in .NET Framework Assemblies on your machine then you should install Microsoft.AspNet.Mvc NuGet package into your project. Then you will be able to using System.Web.MVC;

Default ASP.NET MVC Visual Studio project templates do exactly so and they don't use dll's from Microsoft ASP.NET folder on your machine.

Hope it will help somebody.

0

精彩评论

暂无评论...
验证码 换一张
取 消