Missing ASP.NET Web Application in visual studo 2015 - c#

Im trying to follow along with code school curriculum but i am unable to find any template for ASP.NET Web Application with my version of visual studio community 2015. My new project dialog looks like thisvisual studio query
but i seem to be missing the whole web selection option. I am currently running windows 8 and this is the about/help for my version of VS:
Microsoft Visual Studio Community 2015
Version 14.0.24720.00 Update 1
Microsoft .NET Framework
Version 4.6.01055
Installed Version: Community
Visual Basic 2015 00322-20000-00000-AA718
Microsoft Visual Basic 2015
Visual C# 2015 00322-20000-00000-AA718
Microsoft Visual C# 2015
Visual C++ 2015 00322-20000-00000-AA718
Microsoft Visual C++ 2015
Application Insights Tools for Visual Studio Package 4.2.60128.3
Application Insights Tools for Visual Studio

It seems that your VS 2015 installation miss the Microsoft ASP.NET and Web Tools extension.

Related

How can I use the gRPC template in Visual Studio 2017?

I'm trying to create a server-client communication using gRPC.
I'm using Visual Studio 2017 and try to create a new project with gRPC template however it does not appear as an option.
How can I add the gRPC template to Visual Studio 2017?
As written in the Prerequisites-section of the tutorial in the microsoft docs, you'll need Visual Studio 2019. VS 2017 is not going to work because .NET Core 3 is not supported and the gRPC-Service requires .NET Core 3 or later.
Visual Studio 2019 with the ASP.NET and web development workload
.NET Core 3.0 SDK or later

Template .Net Core Not Display Visual Studio 2015

I instal Microsoft Visual Studio 2015 Entreprise,and then I instal .Net core SDK.
Why when I create a new project templet .Net core not displayed?
If you are using VS 2015 (says 2017 in your title), you probably need to install the "tool preview", for instance from here. That did the trick for me back in the day, but I have since moved on to VS 2017, which feels a lot more core-ready out of the box.

Visual Studio Creating Android project Error

I am new on Xamarin visual studio and I want to develop an android project but I got this error " Object reference not set to an instance of an object"
Actually, I see the error JUST for the C# project and JUST for Android!
I can create the project for IOS and Android under F# project!! but For C# Android I got the error.
I have installed Android SDK and JDK and it shows a green check on the Android setting.
I use visual studio 2012, I tried to reinstall both Xamarin and VIStudio but the error remains.
would you help me, thanks?
EDIT
I installed Visual Studio 2017 and it works fine.
Xamarin doesn't support older versions of VS anymore. The recommendation is to use Visual Studio 2015 or 2017 currently:
Xamarin for Visual Studio supports any Visual Studio 2015 or 2017 (Community, Professional, and Enterprise) and non-Express editions of Visual Studio 2013 Update 2.
https://developer.xamarin.com/guides/cross-platform/getting_started/requirements/#Windows_Requirements

How to Create an ASP.NET MVC 4 project in visual studio 2015

From microsoft msdn:
When you use MVC 4 projects in Microsoft Visual Studio 2015 RTM, you can open existing projects only in the IDE because the tooling support for MVC 4 is removed in Visual Studio 2015 RTM
https://msdn.microsoft.com/en-us/library/mt591926.aspx
Is any one knows some way to Create an ASP.NET MVC 4 project in visual studio 2015?
I also make an empty web application using .net 4 in VS2015 and add mvc4 package from nuget, but cannot make a clean project on it.
As the answer Does Visual Studio 2015 support older versions of MVC? states you cannot create an older MVC project in Visual Studio 2015 (although they can be opened).
So it is the easiest way to install Visual Studio 2013 and create the project there. Afterwards all work can be done in Visual Studio 2015. If you do not want a side by side installation on your working machine, you can install Visual Studio 2013 in another environment (like a virtual machine).

Why are unit tests greyed out in Visual Studio 2015 for SQL Server project?

I have created and added a SQL Server project into my Visual Studio 2015 c# solution.
I would like to do unit testing for my stored procedures. After right clicking on one of the procedures, it is showing create unit test as greyed out:
I did get the most recent SSDT update.
Why is the create unit test option greyed out?
Here is the information about my Visual Studio version:
Microsoft Visual Studio Professional 2015 Version 14.0.24720.00 Update 1 Microsoft .NET Framework Version 4.6.01055
Installed Version: Professional
Visual C# 2015 Microsoft Visual C# 2015
SQL Server Data Tools 14.0.50730.0 Microsoft SQL Server Data Tools
TypeScript 1.7.6.0 TypeScript for Microsoft Visual Studio
Looks like all I had to do was build, fix a few errors, and voila:

Categories