Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

This question asked how to auto update version number in VS 2010 : http://stackoverflow.com/questions/4025704/publishing-in-net-produces-application-files-myapp-someversionnumber-how-to-ge

The answer was, You have to update both Assembly Version AND File version manually

Shouldn't the version number increment each time I publish? Why should I do it manually? Is this is a conscious decision by MS to do it this way? What's the thinking behind having people manually update their own version number?

share|improve this question

2 Answers

up vote 3 down vote accepted

So two or more developers can publish their code under the same version.

share|improve this answer

You could always use the "Build Version Increment" open source add-on for visual studio to do it for you.

share|improve this answer
2  
+1 - Nice find! – Walter Oct 27 '10 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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