C#C
C#15mo ago
Denis

NuGet package project references

I need to share a project from my solution as a NuGet, to provide base implementation types for my application's plugin system.
Let's call this project BasePlugin.
BasePlugin has project dependencies that must be supplied with the produced NuGet package.

I was able to configure that; the built nuspec file contains the required project references.
Done based on: https://dev.to/yerac/include-both-nuget-package-references-and-project-reference-dll-using-dotnet-pack-2d8p

However, projects referencing this NuGet cannot access types from the BasePlugin dependencies.

How do I go about this? Not sure how to search for this.
Was this page helpful?