You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
$ErrorActionPreference = "Stop"
|
|
|
|
$baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463";
|
|
$baseCommitRev = 1;
|
|
|
|
# make sure this matches artifacts-only branches list in appveyor.yml!
|
|
$masterBranches = '^refs/heads/(master|release/.+)$';
|
|
|
|
$globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs";
|
|
|
|
$versionParts = @{};
|
|
Get-Content $globalAssemblyInfoTemplateFile | where { $_ -match 'string (\w+) = "?(\w+)"?;' } | foreach { $versionParts.Add($Matches[1], $Matches[2]) }
|
|
|
|
$major = $versionParts.Major;
|
|
$minor = $versionParts.Minor;
|
|
$build = $versionParts.Build;
|
|
$versionName = $versionParts.VersionName;
|
|
|
|
if ($versionName -ne "null") {
|
|
$versionName = "-$versionName";
|
|
} else {
|
|
$versionName = "";
|
|
}
|
|
|
|
if ($env:BUILD_SOURCEBRANCH -match $masterBranches) {
|
|
$branch = "";
|
|
} else {
|
|
$branch = "-$env:BUILD_SOURCEBRANCHNAME";
|
|
}
|
|
if ($env:SYSTEM_PULLREQUEST_PULLREQUESTNUMBER) {
|
|
$suffix = "-pr$env:SYSTEM_PULLREQUEST_PULLREQUESTNUMBER";
|
|
} else {
|
|
$suffix = "";
|
|
}
|
|
|
|
$revision = [Int32]::Parse((git rev-list --count "$baseCommit..HEAD")) + $baseCommitRev;
|
|
|
|
$newVersion="$major.$minor.$build.$revision";
|
|
$env:ILSPY_VERSION_NUMBER="$newVersion$branch$versionName$suffix";
|
|
Write-Host "##vso[build.updatebuildnumber]$newVersion$branch$versionName$suffix";
|
|
Write-Host "new version: $newVersion$branch$versionName$suffix";
|