Denis
Denis

Reputation: 3707

Is it possible to create ASP.NET MVC3 project with using Visual Studio 2013?

Is it possible to create ASP.NET MVC3 project with using Visual Studio 2013? By default, I can create only ASP.NET MVC4 and ASP.NET MVC5.

Upvotes: 0

Views: 4554

Answers (2)

Daniel Tadros
Daniel Tadros

Reputation: 2357

Yes it is possible,

  1. Create the project with the new mvc
  2. Open references from the solution explorer and then delete system.web.mvc
  3. From tools select Nuget package manager console
  4. Download system.web.mvc 3 using this:
    Install-Package Microsoft.AspNet.Mvc -Version 3.0.20105.1

Upvotes: 3

Spock
Spock

Reputation: 6992

You cannot create a ASP.NET MVC3 project with using Visual Studio 2013. You must upgrade See this SO question for more detail.

Upvotes: 2

Related Questions