在NAnt Build中实现自动版本号更新

两种方式:
1.在NAnt Build 中使用 UpdateVersion小程序
< project  name ="ExecTest"  default ="test" >

< tstamp />

< target  name ="test"  description ="tests using exec to run UpdateVersion.exe" >

< echo  message ="********************************************************************" />

< echo  message ="** Running UpdateVersion.exe." />

< exec  program ="UpdateVersion.exe"  commandline ="-b MonthDay -s 2002-01-21 -i Input.txt -o 


Output.txt"
 verbose ="true"  failonerror ="true"   />

< echo  message ="** End of Tests" />

< echo  message ="********************************************************************" />

</ target >

</ project >

2.直接参考UpdateVersion的build文件,在NAnt中使用脚本

你可能感兴趣的:(Build)