Nick Fulton
Nick Fulton

Reputation: 333

ASP.NET 5 and Visual Studio 2015

I have been using Visual Studio Community 2015 for a while, but recently I got a minor update for web tools. After updating, I lost the ASP.NET 5 project templates in the ASP.NET Web Application creation dialogue. I went to the get.asp.net and the download was gone. Since then, I've tried repairing Visual Studio, repairing .NET Core, and now I'm onto uninstalling and reinstalling both, but that would take a really long time, so I need to know what I can do to bring ASP.NET 5 back.

Upvotes: 1

Views: 199

Answers (2)

Nate Barbettini
Nate Barbettini

Reputation: 53600

"ASP.NET 5" is no more (it's ASP.NET Core now), and the templates have moved around a bit.

After installing the latest .NET Core tooling and Visual Studio 2015 Update 2, there are new ASP.NET Core templates available in the New Project dialog under .NET Core:

enter image description here

Pick ASP.NET Core Web Application to create a new ASP.NET project targeting .NET Core.

Upvotes: 2

moyeradon
moyeradon

Reputation: 453

Asp.Net 5 is now listed under .Net Core. The menu option is under Visual C# when you go to add a new project. To create a web app, you would select ASP.NET Core Web Application which is a preview template for ASP.NET 5

Upvotes: 1

Related Questions