My company has set up a nuget repository for packages that are proprietary to our business. I have a nuspec file for a package that lists dependencies that are located on the main nuget repository. When I install a package from our repository the dependencies are not installed.
<dependencies>
<group targetFramework="uap">
<dependency id="FluentNHibernate" version="2.0.3.0" />
<dependency id="log4net" version="2.0.8.0" />
<dependency id="Newtonsoft.Json" version="6.0.0.0" />
<dependency id="UserModel.SMDC" version="1.0.0.0" />
<dependency id="Microsoft.AspNet.Identity.Core" version="2.2.1" />
<dependency id="Microsoft.AspNet.WebPages.Core" version="5.2.3" />
<dependency id="Microsoft.AspNet.WebApi.WebHost" version="5.2.3" />
<dependency id="Microsoft.AspNet.WebApi.Data" version="3.2.5" />
<dependency id="Microsoft.AspNet.WebApi.WebData" version="3.2.5" />
<dependency id="Npgsql" version="3.2.5" />
</group>
</dependencies>
Is there something I need to do to tell the "push" to look at the main nuget site?