46
votes

How Can I open .Net Core 3.0 project in Visual Studio 2017?

I have downloaded the .NET Core 3.0 SDK from dotnet.microsoft.com and created new project with dotnet new command in a folder.

Building C# project shows error:

The current .NET SDK does not support targeting .NET Core 3.0. Either target .NET Core 2.1 or lower, or use a version of the .NET SDK that supports .NET Core 3.0.

I checked it but it doesn't work in my case:

Visual Studio 2017 with .Net Core SDK 2.0

Visual Studio 2017 with .Net Core SDK 2.1

8
2019 Preview 5 has an installer.. 2.1 appears to be the highest version that installs into 2017, although 2.2 tools are also available.Joseph Poirier

8 Answers

35
votes

.In VS 2017: You can just go to the ToolsOptionsProject and Solutions.NET Core and then check Use previews of the .NET Core SDK

42
votes

Unfortunately .NET Core 3 requires MSBuild 16. Even if you enable preview versions of .NET Core in VS 2017 as others have suggested you will still get the error:

The current .NET SDK does not support targeting .NET Core 3.0. Either target .NET Core 2.1 or lower, or use a version of the .NET SDK that supports .NET Core 3.0.

If you create a global.json file and put in eg.

{
  "sdk": {
    "version": "3.0.100-preview5-011568"
  }
}

You then get shown the real problem which is:

error : Version 3.0.100-preview5-011568 of the .NET Core SDK requires at least version 16.0.0 of MSBuild. The current available version of MSBuild is 15.9.21.664. Change the .NET Core SDK specified in global.json to an older version that requires the MSBuild version currently available.`

MSBuild 16 only comes with VS 2019, so, the answer is that you CAN use VS 2017 with .NET Core 3, but only if you also have VS 2019 installed as well!

7
votes

Visual Studio 2019 update

About the original answer from @GoDev :

Starting with Visual Studio 2019, the option has moved to:

Tools > Options > Environment > Preview Features

Option screen

Official notes

4
votes

.Net Core 3.0 requires Visual Studio 2019 Preview 1, you can't use Visual Studio 2017. According to the .Net Blog, "Visual Studio 2019 will be the release to support building .NET Core 3 applications" and requires .Net 4.8

When creating a new application/project, the project declares a dependency on .Net Core 3.0 via the netcorepp3.0 target framework.

3
votes

Came across the same issue and this article helped to sort out

1. Check if .NET Core SDK 3.x is installed

enter image description here

If there is none, go to the official .NET Core 3 Download page and get it, then install it and try again. https://dotnet.microsoft.com/download/dotnet-core/3.0

2. Enable .NET Core SDKs Previews

enter image description here

.NET Core 3.0 preview1 was the last version of .NET Core 3.0 that worked with Visual Studio 15.9 (aka Visual Studio 2017): any subsequent release of .NET Core 3.0 (including nightlies) require VS 16.0+, aka Visual Studio 2019.

3. Check the PATH environment variables

enter image description here

Reference : https://www.ryadel.com/en/current-net-sdk-not-support-net-core-3-0-fix/

2
votes

To create or open applications targeting .NET Core 3.0, Visual Studio 2019 or newer is required. When creating a new project Visual Studio may show you a yellow bar with the message "ASP.NET Core 3.0 or newer projects are not supported by this version of Visual Studio"

more informaion: https://github.com/aspnet/Tooling/blob/master/dotnet-core-3.0-preview1.md

2
votes

You need to enable "Use previews of the .NET Core SDK" from

Visual Studio's tools | Options | Project and Solutions | .NET Core


After this, you need to restart visual studio and you will be able to use ".NET Core 3" projects.

You can also follow youtube page for any further queries regarding ".NET Core 3".

0
votes

This is fixed in latest vs preview. Install it following steps in here. https://docs.microsoft.com/en-us/visualstudio/mac/install-preview?view=vsmac-2019