I'm using visual studio 2015 update 3 in the project and have downloaded the project from source control to my local repository.
The problem is when i try to restore the packages it outputs below error
PATH=.\node_modules\.bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Web\External;%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Web\External\git
C:\Program Files\dotnet\dotnet.exe restore "C:\Users\XXXX\XXXX\XXXX\.vs\restore.dg"
log : Restoring packages for C:\Users\\XXXX\XXXX\XXXX\project.json...
error: Unable to resolve 'moq.netcore (>= 4.4.0-beta8)' for '.NETFramework,Version=v4.5.2'.
log : Lock file has not changed. Skipping lock file write. Path: C:\Users\XXXX\XXXX\XXXX\project.lock.json
log : C:\Users\\XXXX\XXXX\XXXX\ABC.xproj
log : Restore failed in 1392ms.
Errors in C:\Users\XXXX\XXXX\XXXX\ABC.xproj
Unable to resolve 'moq.netcore (>= 4.4.0-beta8)' for '.NETFramework,Version=v4.5.2'.
Is this to do with version of Nuget not compatible with .net framework 4.5.2?
Any suggestions would be of great help.
Thank you