这是我想要实现的目标。我目前使用Hudson构建在远程计算机上为我做构建。我目前必须打开我的解决方案并手动更新两个文件中的[assembly:AssemblyVersion(" 1.2.6.190")]数字,然后在通过Hudson运行构建之前将我的更改提交给SVN。 (除非你现在建立clcik,否则哈德森工作不会设置为运行)
我想找到一种方法,每次Hudson进行构建时,只会自动增加最后一个数字。
我希望它增加1(没有时间戳或类似)。
任何有关其他材料的想法或链接都可能会有所帮助=)
谢谢,
托比
答案 0 :(得分:5)
我使用Jenkins的PowerShell插件并使用Powershell查找与模式匹配的所有文件(比如AssemblyInfo。*),然后读取文件并使用PowerShell中的内置正则表达式功能(-match和-replace operations)查找并替换AssemblyVersion属性,将最后一个八位字节更改为当前的Jenkins内部版本号。
function assign-build-number
{
#get the build number form Jenkins env var
if(!(Test-Path env:\BUILD_NUMBER))
{
return
}
#set the line pattern for matching
$linePattern = 'AssemblyFileVersion'
#get all assemlby info files
$assemblyInfos = gci -path $env:ENLISTROOT -include AssemblyInfo.cs -Recurse
#foreach one, read it, find the line, replace the value and write out to temp
$assemblyInfos | foreach-object -process {
$file = $_
write-host -ForegroundColor Green "- Updating build number in $file"
if(test-path "$file.tmp" -PathType Leaf)
{
remove-item "$file.tmp"
}
get-content $file | foreach-object -process {
$line = $_
if($line -match $linePattern)
{
#replace the last digit in the file version to match this build number.
$line = $line -replace '\d"', "$env:BUILD_NUMBER`""
}
$line | add-content "$file.tmp"
}
#replace the old file with the new one
remove-item $file
rename-item "$file.tmp" $file -Force -Confirm:$false
}
}
答案 1 :(得分:2)
由于我只得到了没有考虑到我使用Hudson的要求的答案,我想我会发布一个很好的解决方案的链接。
在这里查看“nos”的答案 - How can I auto increment the C# assembly version via our CI platform (Hudson)?
这不是公认的答案,但它应该是完美的。