Reputation: 412
I have created a nuget package using NuGet Package Explorer containing only one DLL file. When I install it using Package Manager Console, it says installation was successful, but no file is copied into the bin
folder after rebuilding the project. The DLL file is compiled resources for localizing Microsoft.AspNet.Identity.Core
.
The package is available from this link:
Download the package file
What is wrong with my package and what should I do?
Upvotes: 0
Views: 1319
Reputation: 47937
I believe the problem is that the name of the lib folder does not match the satellite NuGet package filename.
You have AspNet.Identity.Core.fa.nupkg as the NuGet package filename but you are using a lib/net45/fa-lR folder.
Information taken from the Creating localized NuGet packages page is shown below:
Upvotes: 1