|
|
|
@ -3,8 +3,8 @@
@@ -3,8 +3,8 @@
|
|
|
|
|
$baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463"; |
|
|
|
|
$baseCommitRev = 1; |
|
|
|
|
|
|
|
|
|
# make sure this list matches artifacts-only branches list in appveyor.yml! |
|
|
|
|
$masterBranches = @("master", "5.0.x"); |
|
|
|
|
# make sure this matches artifacts-only branches list in appveyor.yml! |
|
|
|
|
$masterBranches = '^(master|release/.+)$'; |
|
|
|
|
|
|
|
|
|
$globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs"; |
|
|
|
|
|
|
|
|
@ -112,7 +112,7 @@ try {
@@ -112,7 +112,7 @@ try {
|
|
|
|
|
$branchName = gitBranch; |
|
|
|
|
$gitCommitHash = gitCommitHash; |
|
|
|
|
|
|
|
|
|
if ($masterBranches -contains $branchName) { |
|
|
|
|
if ($branchName -match $masterBranches) { |
|
|
|
|
$postfixBranchName = ""; |
|
|
|
|
} else { |
|
|
|
|
$postfixBranchName = "-$branchName"; |
|
|
|
|