Fix "Nightly Release" pipeline following csproj changes

This commit is contained in:
BobLd 2024-12-15 10:56:03 +00:00
parent 952a07ef41
commit 7ec4e692a9

View File

@ -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)
}