Install visual studio 2015 but can't create mvc application - visual-studio

I recently downloaded Visual Studio 2015. When I wanted to create new project I chose file---new---project and I need to select asp.net mvc4 web application, but I couldn't find it I have only asp.net empty web application
and when I select it i have this error

Try to install Microsoft Web Developer Tools.
here: https://visualstudiogallery.msdn.microsoft.com/c94a02e9-f2e9-4bad-a952-a63a967e3935
It will enable MVC templates (and others web tools) for VS.
(maybe also the error goes away)
Send results. Att,

Related

In the VS 2017 Community Edition, Unable to see MVC Project option (Template is not showing)?

I have Visual Studio Community 2017 Edition; And i am using .Net Framework 4.6.1
Under Visual C# , I am able to see following Project Options.
Crystal Report, I installed separately.
However, i am not able to see ASP.Net MVC Project Option.
Project Template is not showing ?
ASP.Net Empty Web Site
ASP.Net Web Forms Site
ASP.NET Web Site (Razor v3)
ASP.NET Dynamic Data Entities Web Site
WCF Service
ASP.Net Crystal Reports Web Site
I have installed all the necessary components. How do i fix this ?
If you select e.g. ASP.NET Web Application and click OK then you will be presented with various options. The MVC option is listed there.

Visual Studio 2013 - No web template

I am trying to begin learning MVC, but when i run visual studio ultimate 2013 there is no web template listed under c# that I can see to click on.
It should be listed above Office/Sharepoint in all the examples that I have seen, but I can't find a way to make it appear.
Thanks.
VS 2013 has no distinct project types for different ASP.Net features.
Please select .NET Framework 4.5 (or higher) in order to see the ASP.NET Web Application template (For ASP.NET One).
Select Visual C# -> Web ->ASP.NET Web Application, under that select the "MVC checkbox in the next step".

Visual Studio 2012 Express MVC 3 deployment

I have developed a a MVC 3 application in Visual Studio 2012 express and I'm trying to create a web deployment package following the documentation in this link:
http://msdn.microsoft.com/query/dev11.query?appId=Dev11IDEF1&l=EN-US&k=k(WebApplicationProjects.PackagePublishOverview);k(TargetFrameworkMoniker-.NETFramework,Version%3Dv4.0)&rd=true
I have a couple of issues.
1. I cannot select deploy check box in the configuration manager, it is greyed out
2. The zip file is not being created
Is this a limitation of the version of visual studio or am I going about deploying this type of project wrong. Due to the nature of the application the web deployment package is the best deployment option.

The project type is not supported by this installation

I am trying to open an MVC 3 project on my system but I am getting following error:
Microsoft Visual Studio
The project file 'C:\Users\abc\Desktop\trunk\iCorpNow\iCorpNow.csproj' cannot be opened.
The project type is not supported by this installation.
OK Help
I have both asp.net MVC 2 and asp.net MVc 3 installed on my development machine
I have windows 7 installed on my machine.
I have visual studio 2010 ultimate installed.
Project is developed using asp.net MVc 3 and on Windows server 2008 using Visual studio professional 2010
Please suggest me how to fix this error.
Here are the project types listed in my project file
<ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
Thanks.
The problem you're having is that your project using Asp.Net MVC4 but you've only installed 2 and 3. If you install Asp.Net MVC4 it should allow you to open the project.
The way to tell that this is the problem is by examining the GUIDs which are associated with the ProjectType entry in the project file. In this example they are
{fae04ec0-301f-11d3-bf4b-00c04f79efbc}: C# project
{349c5851-65df-11da-9384-00065b846f21}: Web Application
{E3E379DF-F4C6-4180-9B81-6769533ABE47}: Asp.Net MVC 4
Both C# and Web Application come standard with Visual Studio Pro and above hence the missing piece must be Asp.Net MVC 4
I also had this problem and I found my answer here:
http://social.msdn.microsoft.com/Forums/en-US/06cf7bca-982c-44cf-aec9-99cf399b3000/the-project-type-is-not-supported-by-this-installation
In short:
open Visual Studio Command Prompt
run "devenv /setup" from the command line
Also, you must have MVC3 or 4 or whatever is required before you run this command.

Is it possible to open web application project from web in Visual Studio 2010

I been using Web Application project with Visual Studio 2003 for many years, and I finally decided to migrate to Visual Studio 2010 Pro. I did use the convert wizard with success to migrate my Web Application project.
However, there is one thing that I am not able to do with VS 2010 that I was able to do with VS 2003 : open a project from web. (important : here I mean a Web Application Project, not a Web Site Project)
VS 2010 only seems to offer the option to open Web Site Project from a web location. I want to keep using Web Application Project, and I am only able to open Web Application Project on my own computer or on my network, but I am not able anymore to open a Web Application Project using http location. This feature was available in VS 2003 and I really can't find the same in VS 2010.
Can you help?
new project -> language -> web -> ASP.NET Web Application

Resources