Hello:
I have an ASP .NET Core Web Application (.NET Framework) which works only on Windows taking advantage of full .Net framework. It is using AspNetCore version 1.1.2
I now see that ASP .NET Core 2.0 is released
https://blogs.msdn.microsoft.com/webdev/2017/08/14/announcing-asp-net-core-2-0/
In order to upgrade my project from 1.1.2 to 2.0.0, I opened by solution in VS 2017 and from the Package Manager Console, I did
Install-Package Microsoft.NETCore.App -Version 2.0.0
it then comes back with the error:
Install-Package : Package Microsoft.NETCore.App 2.0.0 is not compatible with net462 (.NETFramework,Version=v4.6.2). Package Microsoft.NETCore.App 2.0.0 supports:
- netcoreapp (.NETCoreApp,Version=v0.0)
- netcoreapp2.0 (.NETCoreApp,Version=v2.0)
At line:1 char:1
What does this mean? I cannot upgrade to 2.0.0 ???
Please help!