Я использую плагин PowerShell для Jenkins и использую Powershell для поиска всех файлов, которые соответствуют шаблону (скажем, AssemblyInfo. *), Затем считываю файлы и использую встроенную функциональность регулярных выражений в PowerShell (-match и-relace операции), чтобы найти и заменить атрибуты 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
}
}