I have the following scenario and will try my best to explain the issue. I can add more context if required.
I have 2 projects (consumer and producer).
The project Producer has a called Foo. This Producer project is also packed as a nuget package.
The Consumer project uses the Producer package as a Package Reference. It doesn’t seem to have Foo working specifically on builds. Seems like I need to directly reference Foo in Consumer for the build to work correctly.
Why is this the case? Is it something within the Foo package that doesn’t allow this to work?
Cliffs
- Producer (references Foo)
- Consumer (references Producer, Foo doesn’t work for builds)