TeamCity NuGet Pack - Include Release Notes in Command Line

When using the TeamCity Pack NuGet Build step, there is a little box at the bottom of the page allow ing you to specify additional command line arguments.

I wonder, is there a way to push the VCS logs to the NuGet release notes via the command line?

Or, is there another way to get TeamCity to update NuGet Package release notes to include the VCS commit messages?

enter image description here

Upvotes: 3

Views: 855

Answers (1)

JonSquared
JonSquared

Reputation: 683

Not by using the commandline.

I use GitReleaseNotes to generate my release notes from git commits. You could run that before you pack the NuGet Package and include it as readme file for the package or have another build step inbetween that updates in NuSpec from the generated file.

Upvotes: 4

Related Questions