Ash*_*hra 2 powershell teamcity
我想更新 teamcity checkout 目录中的所有 assemblyinfo.cs。从 AssemblyInfo.cs 中引用了这篇文章Get and Replace AssemblyVersion。看起来缺少某些逻辑并且文件没有得到更新。它应该将行 [assembly: AssemblyVersion("1.4.0.0")] 更新为 [assembly: AssemblyVersion("1.4.0.%build.counter%")]
$BuildCounter = "%build.counter%"
$pattern = '\[assembly: AssemblyVersion\("(.*)"\)\]'enter code here
Get-ChildItem -r -filter AssemblyInfo.cs | foreach-object { $name = $_.FullName}
{
(get-content $name ) | ForEach-Object{
if($_ -match $pattern){
# We have found the matching line
# Edit the version number and put back.
$fileVersion = [version]$matches[1]
$newVersion = "{0}.{1}.{2}.{3}" -f $fileVersion.Major, $fileVersion.Minor, $fileVersion.Build, $BuildCounter
'[assembly: AssemblyVersion("{0}")]' -f $newVersion
} else {
# Output line as is
$_
}
} | Set-Content $name
}`enter code here`
Run Code Online (Sandbox Code Playgroud)
没关系,刚开始工作,看起来像语法问题
$BuildCounter = "build.counter"
$pattern = '\[assembly: AssemblyVersion\("(.*)"\)\]'
$AssemblyFiles = Get-ChildItem . AssemblyInfo.cs -rec
foreach ($file in $AssemblyFiles)
{
(Get-Content $file.PSPath) | ForEach-Object{
if($_ -match $pattern){
# We have found the matching line
# Edit the version number and put back.
$fileVersion = [version]$matches[1]
$newVersion = "{0}.{1}.{2}.{3}" -f $fileVersion.Major, $fileVersion.Minor, $fileVersion.Build, $BuildCounter
'[assembly: AssemblyVersion("{0}")]' -f $newVersion
} else {
# Output line as is
$_
}
} | Set-Content $file.PSPath
}
Write-Host "##teamcity[buildNumber '$newVersion']"
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2116 次 |
| 最近记录: |