Reputation: 23
So I have a solution with 6 projects, 2 for testing, one for API and 3 Class libs (BL, Common and Integration), I want to use some BL services inside other solution, I'm trying to create a NuGet package out of the BL project but I'm note sure what to do with the Common and the Integration project, because the BL project references them. So my question is should I create 3 separate NuGet packages (BL, Common and Integration) or will the BL be enough?
Upvotes: 0
Views: 1116
Reputation: 1193
If you need the other class libs (referenced directly or indirectly through BL) then you need to publish those nuget packages.
Upvotes: 0