Usage:
C:\> StampVersion.exe [/nologo] [/wait] /build:{Number}|{File Path} [/revision={Number}|{File Path}]
StampVersion crawls the current directory for all files named "AssemblyInfo.cs" and for each of those files it searches for the AssemblyVersion or AssemblyFileVersion attribute. For each occurrence found it then replaces the version with the information provided on the command-line. For any value that is not specified on the command-line it will not be modified.
Options:
- /major:{Number} - defines the major (2th part) of the version
/major:{File Path} - file path of a text file contain a line with:
Major: {Number} - /minor:{Number} - defines the minor (2th part) of the version
/minor:{File Path} - file path of a text file contain a line with:
Minor: {Number} - /build:{Number} - defines the build (3th part) of the version
/build:{File Path} - file path of a text file contain a line with:
Build: {Number} - /revision:{Number} - defines the revision (4th part) of the version
/revision:{File Path} - file path of a text file contain a line with:
Revision: {Number} - /nologo hides the startup message.
- /wait after processing wait for user input before exiting the process.