If you have multiple libraries in the same solution, you can add local (project) references between them:
{
"dependencies": {
"NETStandard.Library": "1.6.0",
"MyOtherLibrary": {
"target": "project"
}
},
"frameworks": {
"netstandard1.3": { }
}
}
The target: project
property value tells NuGet to look in the current solution for MyOtherLibrary
, instead of in your package sources.