I'm having trouble of dependencies in a chain of NuGet projects (Visual Studio 2019 and NuGet 5.7.0.6726).The first project, include Log4Net NuGet package from NuGet.org, I package it with "nuget.exe pack mx_logging.vbproj -IncludeReferencedProjects" and I create my own (MX_Logging.nupkg).A second Project use MX_Logging and i have the installation of Log4Net too, no problem so far...Now, if i package the second project too with the same method it only have MX_Logging and not log4net as dependencies, how my i fix this?
This is the package.config in the second project root:
<packages><package id="log4net" version="2.0.8" targetFramework="net452" /><package id="MX_logging" version="1.2.7668.29513" targetFramework="net452" /></packages>
Thanks a lot to everyone ;-)