I recently updated my version of NuGet to 3.4.4-rtm-final using
nuget update -self
Now that I've done this, nuget restore MySolution.sln
fails with the following error:
Error reading 'c:\...MySolution\MyProject.NetCore.Tests\project.json' at line 15 column 23 : TODO: unknown keyword platform
TODO: unknown keyword platform
Here's the relevant part of project.json. When I remove the platform specifier, the build fails:
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.1"
}
}
}
},
What do I need to do in order to fix this?