I created a build definition with some MSBuild Arguments (/target:Publish /property:PublishDir=\mypc\tmp\ /property:ApplicationVersion=1.0.0.1)

What's the best way to increment the ApplicationVersion for each build automatically?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

First of all I suggest you make sure all projects in your solution use a shared AssemblyInfo file (as mentioned here).

Then alter your build script so the file is checked out, the version number increased and saved, then checked in again.

To do that have a look at the community build tasks, or create your own.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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