I have a solution that looks like this:
-> Proj A
-> proj B
Proj B
references Proj A
Both projects have a paket.template
that looks like this:
When I paket pack
, I get two nugets created, one for each project. Fantastic.
However, I now want to make ProjA.dll
be bundled inside ProjB
's nuget (ProjB
is an .exe/tool that needs its dependencies bundled to operate).
Adding include-referenced-projects true
to ProjB
s paket.template
has no effect, neither does any combination of paket
command line --include-referenced-projects true
that I've tried.
Is this supported? Is this a bug?
Either way, how can I achieve what I want, without making separate solutions to house ProjA
and ProjB
?