I am having a weird issue to get a reference added to the project's references. Let me first just show the setup I have.
I have two packages: Framework.nuspec and Resources.nuspec. Each containing a dll. The dll in the Framework.nuspec is 88KB and the dll in the Resources.nuspec is 13605 KB.
Framework.nuspec is as follows:
<? xml version="1.0"?> <package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> <metadata> <id>Framework</id> <version>1.0.2</version> <title>Framework</title> <authors>Author</authors> <owners>Owner</owners> <requireLicenseAcceptance>false</requireLicenseAcceptance> <description>Core functionality</description> <copyright>Copyright © 2016 Company</copyright> </metadata> <files> <file src="bin\Framework.dll" target="lib\net461" /> </files> </package> Resources.nuspec is as follows:
<?xml version="1.0"?> <package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> <metadata> <id>Resources</id> <version>1.0.2</version> <title>Resources</title> <authors>Author</authors> <owners>Owner</owners> <requireLicenseAcceptance>false</requireLicenseAcceptance> <description>All resources</description> <copyright>Copyright © 2016 Company</copyright> </metadata> <files> <file src="bin\Resources.dll" target="lib\net461" /> </files> </package> As you can see, the setup for the packages are simple and looks exactly the same, except for the names and files. Then the command to pack these packages is a simple: nuget.exe pack Framework.nuspec and nuget.exe pack Resources.nuspec
Now what happens is, when I add the Framework package, it adds the reference correctly: 
But when I add the Resources packages, it doesn't add the reference at all: 
Is it something I am doing wrong? Is this a bug that I need to go and report or one that is already reported that I missed? Has someone encountered this before? Is it because I'm using net461?
I have created the packages over and over but no success.
Any feed back will be much appreciated.
Kind Regards, Willem Toerien
UPDATE: Here are the outputs for the adding of the Resources package:
Attempting to gather dependencies information for package 'Resources.1.0.2' with respect to project 'ConsoleApplication1', targeting '.NETFramework,Version=v4.6.1' Attempting to resolve dependencies for package 'Resources.1.0.2' with DependencyBehavior 'Lowest' Resolving actions to install package 'Resources.1.0.2' Resolved actions to install package 'Resources.1.0.2' Adding package 'Resources.1.0.2' to folder 'C:\Users\wtoerien\Documents\Visual Studio 2015\Projects\ConsoleApplication1\packages' Added package 'Resources.1.0.2' to folder 'C:\Users\wtoerien\Documents\Visual Studio 2015\Projects\ConsoleApplication1\packages' Added package 'Resources.1.0.2' to 'packages.config' Successfully installed 'Resources 1.0.2' to ConsoleApplication1 ========== Finished ========== As you can see, there are no warnings.

nuget packfor Resources? And did you check the content of the nupkg?dllin place?