dotnet-installer/TestAssets/TestProjects/AppWithDirectDependencyWithOutputName/project.json
moozzyk 1aac8fb643 Fixing ProjectDependenciesCommandFactory to resolve tools
if the package name is different from the dll name

Addresses #2592
2016-04-21 19:15:54 -07:00

27 lines
486 B
JSON

{
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"ToolWithOutputName": {
"version": "1.0.0",
"target": "package"
},
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-*",
"type": "platform"
}
},
"frameworks": {
"netcoreapp1.0": { }
},
"tools": {
"dotnet-dependency-tool-invoker": {
"version": "1.0.0-*",
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
}
}