I know that I can change the author and description if I list nuspec in my package (i.e. nuget pack someSpec.nuspec), but I want my project to be "the only source of truth." Unfortunately, I cannot change the title / description / author using the command line. I decided this would work:
nuget pack Persistence.csproj -properties Title=Company.Project.Persistence -IncludeReferencedProjects -o bin\nuget_build
but it does not work. Can I do this using the command line?
source
share