Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to include .Net Core 2.0 in Visual Studio 2017

I want to create a project in .Net Core 2.0, but some how the Visual Studio 2017 SDK does not displays the .Net Core 2.0 in Target Framework selection drop down list.

I have already installed .net Core 2.0 SDK on my machine.

Any help would be appreciated.

like image 272
Sonu K Avatar asked Sep 05 '17 13:09

Sonu K


People also ask

Can I use .NET Core in Visual Studio 2017?

Visual Studio 2017 Support for . Among the workloads and project types, you can find support for . NET Framework, . NET Core, Mono, and . NET Native for Universal Windows Platform (UWP).

How do I open .NET Core in VS 2017?

Run Visual Studio 2017 and Select File > New Project. On the left menu select Visual C# > . NET Core. On the list of application templates pick ASP.NET Core Web Application.


1 Answers

To get .Net Core 2.0 working, you need to make sure you have updated to Visual Studio 2017 15.3, selected the .Net Core Workload during Visual Studio 2017 Setup:

enter image description here

and finally installed the .net Core 2.0 SDK.

If you have done all steps, you can create a project with .Net Core 2.0.

like image 129
magicandre1981 Avatar answered Oct 05 '22 23:10

magicandre1981