Trying to create and publish a NuGet package from a project (*.csproj) via NuGet.exe and I got the following warning:
The replacement token ‘description’ has no value.
How can I get rid of this warning?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This warning appear when the Visual Studio project was not built before packaging using NuGet. Just rebuild your project and repack.
nuget pack your-project.csproj.Then it should work.
Note this behavior was filed as an issue in CodePlex.
Note: as per Boris Callens’ response below, can use the
-Buildto have NuGet do the build