dotnet-installer/TestAssets/TestProjects/TestAppWithBuildDependency/App/project.json

20 lines
352 B
JSON
Raw Normal View History

{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc3-004306"
},
"LibraryWithBuildDependency": {
"target": "project"
}
},
"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50"
}
}
}