Philipp
Philipp

Reputation: 521

Use Visual Studio 2017 with .Net Core SDK 3.0

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

Upvotes: 50

Views: 96517

Answers (10)

AqilaAdnandana
AqilaAdnandana

Reputation: 1

install .net core 2.0. visual studio 2017 for .net core works for version 2.0, 1.1 and 1.0

Upvotes: 0

make punk
make punk

Reputation: 11

If you're here from the future and there's no specific reason to stay on 2017, upgrading to 2019 will fix this problem.

Upvotes: 0

CharithJ
CharithJ

Reputation: 47570

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/

Upvotes: 4

user917170
user917170

Reputation: 1641

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!

Upvotes: 48

Treycos
Treycos

Reputation: 7492

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

Upvotes: 8

Jeevan
Jeevan

Reputation: 538

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

Upvotes: 0

Manish Jain
Manish Jain

Reputation: 1353

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".

Upvotes: 2

AminRostami
AminRostami

Reputation: 2772

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

Upvotes: 3

user5158149
user5158149

Reputation:

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

Upvotes: 35

Trevor
Trevor

Reputation: 8004

.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.

Upvotes: 4

Related Questions