dotnet-installer/TestAssets/TestProjects/AppWithDependencyOnToolWithOutputName/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

22 lines
357 B
JSON

{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-*",
"type": "platform"
}
},
"frameworks": {
"netcoreapp1.0": { }
},
"tools": {
"ToolWithOutputName": {
"version": "1.0.0",
"target": "package"
}
}
}