vote up 2 vote down star
2

Is there any way to get TeamCity's build numbering to match the publish version (ApplicationRevision) number generated by MSBuild's publish task?

flag

1 Answer

vote up 2 vote down

You can control the build number in TeamCity via a specially formatted message in the build log. This can be output at any stage (e.g. during publish) and will cause the initially assigned build number to change. See here for more info.

For example, our msbuild has this to output the version as the build number:

<Message Text="##teamcity[buildNumber '$(FullVersion)']"/>
link|flag
Excellent, didn't know that one. – Todd Aug 20 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.