I installed VS2017 15.3.0 and .NET Core 2.0 and created the default Web MVC application on VS 2017, and I got the following errors:
Error NU1202 The System.Threading.Overlapped 4.0.1 package is not compatible with netcoreapp2.0 (.NETCoreApp, Version = v2.0). System.Threading.Overlapped 4.0.1 package supports: netstandard1.3 (.NETStandard, Version = v1.3) Error NU1202 System.IO.Compression 4.1.0 package is not compatible with netcoreapp2.0 (.NETCoreApp, Version = 2.0). System.IO.Compression 4.1.0 package supports: - monoandroid10 (MonoAndroid, Version = v1.0) - monotouch10 (MonoTouch, Version = v1.0) - net45 (.NETFramework, Version = v4.5) - netcore50 (.NETCore , Version = v5.0) - netstandard1.1 (.NETStandard, Version = v1.1) - netstandard1.3 (.NETStandard, Version = v1.3) - portable-net45 + win8 + wpa81 (.NETPortable, Version = v0 .0, Profile = Profile111) - win8 (Windows, version = v8.0) - wpa81 (WindowsPhoneApp, Version = v8.1) - xamarinios10 (Xamarin.iOS, version = v1.0) - xamarinmac20 (Xamarin.Mac, Version = v2.0) - xamarintvos10 (Xamarin.TVOS, version = v1.0) - xamarinwatchos10 (Xamarin.WatchOS, Version = v1.0)
The same errors occur when using the NET CLI with the command: dotnet new mvc
I tried nuget update: Install-Package NuGet.CommandLine -Version 4.3.0
But that does not work.
So, I have dotnet core2 installed, with Visual Studio 2017 with update 15.3.0 and NuGet 4.3.0
What am I missing here?
source
share