Skip to content

Commit

Permalink
Release 5.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Feb 9, 2023
1 parent 1109516 commit 5dd2beb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/update-version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Write-Host $To

((Get-Content -path build.proj -Raw) -replace $From, $To) | Set-Content -Path build.proj -NoNewline
((Get-Content -path ..\.github\workflows\ci.yml -Raw) -replace $From, $To) | Set-Content -Path ..\.github\workflows\ci.yml -NoNewline
((Get-Content -path ReportGenerator.Console\Properties\AssemblyInfo.cs -Raw) -replace $From, $To) | Out-File ReportGenerator.Console\Properties\AssemblyInfo.cs -Encoding UTF8 -NoNewline
(Get-ChildItem -Recurse -Filter ReportGenerator*.csproj | Select-String $From) | ForEach-Object { ((Get-Content -path $_.Path -Raw) -replace $From, $To) | Out-File $_.Path -Encoding UTF8 -NoNewline }
((Get-Content -path AzureDevopsTask\vss-extension.json -Raw) -replace $From, $To) | Set-Content -Path AzureDevopsTask\vss-extension.json -NoNewline

Expand Down

0 comments on commit 5dd2beb

Please sign in to comment.