mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-24 19:01:45 +08:00
13 lines
372 B
PowerShell
13 lines
372 B
PowerShell
![]() |
param (
|
||
|
[Parameter(Position=0,mandatory=$true)]
|
||
|
[string]$version
|
||
|
)
|
||
|
|
||
|
$projs = Get-ChildItem "../src" -Recurse | Where-Object { $_.extension -eq ".csproj" -and $_.name.IndexOf("Tests") -lt 0 }
|
||
|
$projs | ForEach-Object {
|
||
|
$xml = New-Object XML
|
||
|
$xml.Load($_.FullName)
|
||
|
$xml.Project.PropertyGroup[0].Version = $version
|
||
|
$xml.Save($_.FullName)
|
||
|
}
|
||
|
Write-Host $projs.Length
|