1

I have a solution having 5 .NET projects. Is there a way to automate the version update in the form 1.0.* ?

Aster Veigas
  • 866
  • 3
  • 13
  • 34

3 Answers3

0

You need the AssemblyInfo Task for that.

You can also use VersionUpdator.

VersionUpdater is a simple command line tool for .NET developers to automatically increment version numbers when building .NET assemblies from Visual Studio or your automated build scripts.

Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331
0

[assembly: AssemblyVersion("2.02.*")]

MichaC
  • 13,104
  • 2
  • 44
  • 56
0

You can find below article helpful:

http://www.codeproject.com/Articles/31236/How-To-Update-Assembly-Version-Number-Automaticall

skjcyber
  • 5,759
  • 12
  • 40
  • 60