How to use asp net core 2 in visual studio 2015 community?

0

I installed .NET Core 2.0, but when I create a new project in Visual Studio 2015 does not appear the option to choose asp net core 2.0.

Is it possible to use the same in VS 2015?

    
asked by anonymous 07.09.2017 / 16:08

1 answer

1

Visual Studio 2015 only supports .NET Framework 1.1. Officially, .NET Core 2.0 is only available in version 15.3 or higher of Visual Studio 2017. This is because the project file is different ( .csproj / .vbproj vs project.json )

Download Visual Studio 2017 here . In the installation you only filter by the packages that you will use.

I've never heard of any unofficial way to use .NET Core 2.0 in VS2015.

Source: Annoucing .NET Core 2.0

    
07.09.2017 / 16:25