From f93a98a0a8d70eb90fe52a0931fd1c6d70511ecc Mon Sep 17 00:00:00 2001 From: Brett Hewitson Date: Thu, 29 Dec 2022 15:29:45 +1000 Subject: [PATCH] pipeline fiel changes --- .../apply-semantic-versioning-to-assembyinfo-files.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml b/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml index 9395bd50..9a7f8b48 100644 --- a/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml +++ b/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml @@ -46,5 +46,9 @@ steps: # remove the read-only bit on the file Set-ItemProperty $file.FullName -name IsReadOnly -value $false + + # run the regex replace + $content = Get-Content $file.FullName + $content | Set-Content $file.FullName -Encoding UTF8 } pwsh: true