From a571315a4496d2beeaab0f26e13dc2051d39158a Mon Sep 17 00:00:00 2001 From: Brett Hewitson Date: Thu, 29 Dec 2022 15:28:51 +1000 Subject: [PATCH] pipeline file changes --- .../apply-semantic-versioning-to-assembyinfo-files.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml b/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml index 2870cdec..9395bd50 100644 --- a/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml +++ b/.azure/pipelines/apply-semantic-versioning-to-assembyinfo-files.yml @@ -42,6 +42,9 @@ steps: $files = Get-ChildItem -Path $PathToSearch -Filter $SearchFilter -Recurse foreach ($file in $files) { + Write-Host " -> Checking $($file.FullName)" + # remove the read-only bit on the file + Set-ItemProperty $file.FullName -name IsReadOnly -value $false } pwsh: true