Reputation: 2812
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.
Upvotes: 13
Views: 26474
Reputation: 28836
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:
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.
Upvotes: 23