I know I can change the author and the description if I specify a nuspec in my package (i.e. nuget pack someSpec.nuspec
), but I want my project to the be the "one source of truth". Unfortunately, I can't seem to change the title/description/author via a command line switch. I figured this would work:
nuget pack Persistence.csproj -properties Title=Company.Project.Persistence -IncludeReferencedProjects -o bin\nuget_build
but this doesn't work. Can I do this via command line switch?