Types/OpenPackage/set_Revision.ps1

<#
.SYNOPSIS
    Sets OpenPackage `Revision`
.DESCRIPTION
    Sets the OpenPackage `Revision` property.
.LINK
    https://learn.microsoft.com/en-us/dotnet/api/system.io.packaging.packageproperties.revision?wt.mc_id=MVP_321542
#>

param([string]$Revision)

$this.PackageProperties.Revision = $Revision