Errors with .NET Core version

2

I'm having a .NET version error. I have already installed the .NET Core 1.1.2 and .NET Core 2.0.0, but I have this error and I can not solve it.

Error:

It was not possible to find any compatible framework version 
The specified framework 'Microsoft.NETCore.App', version '1.0.0' was not
found.
  - Check application dependencies and target a framework version installed at: \
  - Alternatively, install the framework version '1.0.0'.
    
asked by anonymous 18.08.2017 / 17:04

1 answer

0

The error is the version of your project. It is set to version 1.0 of .NET Core and you have version 1.1.2 and 2.0 installed.

Right click on your project and select Properties .

On the open screen, select Application and then change the Framework version of your project:

Give Rebuild in your project. There may be errors regarding installed libraries due to the new Framework .

    
18.08.2017 / 18:26