Skip to content

Instantly share code, notes, and snippets.

@jboyflaga2
Last active July 31, 2016 21:27
What is the purpose of "imports" in project.json of .NET Core apps?
{
"version": "1.0.0-*",
"testRunner": "xunit",
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
},
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-*",
"Moq": "4.6.36-alpha",
},
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment