34 lines
919 B
PowerShell
34 lines
919 B
PowerShell
[CmdletBinding()]
|
|
param (
|
|
[Parameter(Mandatory = $true)]
|
|
[string] $ServiceDirectory,
|
|
[Parameter(Mandatory = $true)]
|
|
[string] $PackageName
|
|
)
|
|
|
|
. (Join-Path $PSScriptRoot ".." common scripts common.ps1)
|
|
|
|
$versionFileLocation = Get-VersionHppLocation `
|
|
-ServiceDirectory $ServiceDirectory `
|
|
-PackageName $PackageName
|
|
|
|
if (!$versionFileLocation) {
|
|
Write-Verbose "Didn't find a version file for '$ServiceDirectory/$PackageName', so assuming it is not a package."
|
|
return $null
|
|
}
|
|
|
|
$versionFileContents = Get-Content $versionFileLocation -Raw
|
|
|
|
if (!($versionFileContents -match $VersionRegex)) {
|
|
LogWarning "does not match version information schema"
|
|
return $null
|
|
}
|
|
|
|
$VersionString = if ($Matches.prerelease) {
|
|
"$($Matches.major).$($Matches.minor).$($Matches.patch)-$($Matches.prerelease)"
|
|
} else {
|
|
"$($Matches.major).$($Matches.minor).$($Matches.patch)"
|
|
}
|
|
|
|
return $VersionString
|