From 83af0f4d99592b90529355706eab37f988b971bf Mon Sep 17 00:00:00 2001 From: Brett Hewitson Date: Thu, 29 Dec 2022 15:41:14 +1000 Subject: [PATCH] pipeline file changes --- .../apply-semantic-versioning-to-assembyinfo-files.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml b/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml index 23a562bb..ac27a8d6 100644 --- a/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml +++ b/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml @@ -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