What exactly are the frameworks
and imports
sections of the project.json
file of a ASP.NET Core 1.0 project and what do they do? I've been trying to find "official" documentation to understand it better.
Here's a boilerplate example from a recent Yeoman-scaffolded ASP.NET project I started up:
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dotnet5.6",
"dnxcore50",
"portable-net45+win8"
]
}
},