We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aee8043 commit b544276Copy full SHA for b544276
1 file changed
build/SetBuildEnv.ps1
@@ -7,7 +7,7 @@ if ( $env:APPVEYOR_REPO_TAG -ne "True" )
7
{
8
$now = [DateTime]::UtcNow
9
$daysSpan = $now - ( New-Object DateTime( $now.Year, 1, 1 ) )
10
- $env:PackageVersion = "${version}-{0:yy}{1:000}" -f @( $now, $daysSpan.Days )
+ $env:PackageVersion = "${version}-{0:yy}{1:000}-{2:000}" -f @( $now, $daysSpan.Days, ( $now.TimeOfDay.TotalMinutes / 2 ) )
11
}
12
elseif ( ${version} -match "^[\d.]+$" )
13
0 commit comments