I'm trying to get started with .NET Core and I'm really having some headaches to understand all this new naming scheme.
Looking at the wiki netcoreapp1.0
targets the .NET Standard Library 1.6, however when I try to add the netstandard1.6
instead of netcoreapp1.0
I get a package restore failed because Microsoft.NetCore.App does not support netstandard1.6
.
Is it because is delcared like this?
"Microsoft.NETCore.App": {
"version": "1.0.0",
"type": "platform"
},
Also, what does type "platform" means?