pipeline file changes

This commit is contained in:
Brett Hewitson 2022-12-29 15:41:14 +10:00
parent 6ef80eb4f7
commit 83af0f4d99

View file

@ -95,6 +95,8 @@ steps:
# run the regex replace
$content = Get-Content $file.FullName
$content = Replace-Version -content $content -version $version -attribute 'AssemblyVersion'
$content = Replace-Version -content $content -version $fileVersion -attribute 'AssemblyFileVersion'
$content | Set-Content $file.FullName -Encoding UTF8
}
pwsh: true