I have a local NuGet . This feed contains a dependency, and this dependency is on nuget.org.
This is in my nuspec file:
<dependencies>
<dependency id="log4net" version="[1.2.10]" />
</dependencies>
How can I indicate what NuGet should search in nuget.org for this dependency? I am currently getting:
Install-Package: it is not possible to resolve the dependency "log4net (= 1.2.10)".
When I perform a package installation through the package manager console in Visual Studio.
source
share