Dominic Jonas
Dominic Jonas

Reputation: 5025

Use previews of the .NET Core SDK not working anymore

I'm using the new feature previews of the .NET Core SDK for more than six month without any problems.

Today I wanted to create a new project solution with a WPF App (.NET Core). But everytime I want to create the project (or add the project into an existing solution), I get the following exception:

Switch to "Extras" - "Options" - "Envirenment" - "Previewfeatures" to create this project and activate "Use previews of the .NET Core SDK"

enter image description here

The feature is already enabled (since it is working for more than 6 month). I have also tried to un/check again (including visual studio restarts).

Anyone got same problem or some tip to get it working again?


enter image description here

enter image description here

enter image description here

Upvotes: 2

Views: 1060

Answers (1)

Dominic Jonas
Dominic Jonas

Reputation: 5025

As DavidG already wrote, the latest .net core preview v3.0.0-rc1 doesn't supported visual studio 16.2.5 anymore.

enter image description here

After installing an older version (the latest which supports v16.2) v3.0.0-preview6, everything was working as before. 👍

enter image description here

source: https://dotnet.microsoft.com/download/dotnet-core/3.0

Upvotes: 2

Related Questions