Skip to content

Commit

Permalink
Fix "Nightly Release" pipeline following csproj changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BobLd committed Dec 15, 2024
1 parent 952a07e commit 7ec4e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/set-version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $projs = Get-ChildItem "$root/../src" -Recurse | Where-Object { $_.extension -eq
$projs | ForEach-Object {
$xml = New-Object XML
$xml.Load($_.FullName)
$xml.Project.PropertyGroup[0].Version = $version
$xml.Project.PropertyGroup.Version = $version
$xml.Save($_.FullName)
}

Expand Down

0 comments on commit 7ec4e69

Please sign in to comment.