Nikola Nikolic
Nikola Nikolic

Reputation: 23

Generating NuGet package from Visual Studio 2022

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

Answers (1)

Cj S.
Cj S.

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

Related Questions