Reputation: 10697
We want to package some third party assemblies into our own nuget package. I created some packages with NuGet Package Explorer, and published it to our nuget server. I can also install it into our solution, however I have two problems:
I use latest VS 2012, latest NuGet (2.2.xxx).
Upvotes: 2
Views: 963
Reputation: 10697
The problem was caused by incorrect package creation. When you create your package (with NuGet Package Explorer), on the right big "Package Contents" pane you want to create a lib folder by right click and selecting "Add Lib Folder" from the context menu. Then you want to add your assemblies into this folder instead of the root of the package content. Having the right package structure helped achieving the expected behavior: no .nuget folder is created any more and I can "Manage" my package also.
Upvotes: 1