Browse Source

Set version = 5.0.1

pull/1725/head
Siegfried Pammer 6 years ago
parent
commit
28ef411109
  1. 2
      BuildTools/appveyor-install.ps1
  2. 2
      BuildTools/pipelines-install.ps1
  3. 2
      BuildTools/update-assemblyinfo.ps1
  4. 2
      ILSpy/Properties/AssemblyInfo.template.cs
  5. 2
      appveyor.yml
  6. 5
      azure-pipelines.yml

2
BuildTools/appveyor-install.ps1

@ -4,7 +4,7 @@ $baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463";
$baseCommitRev = 1; $baseCommitRev = 1;
# make sure this list matches artifacts-only branches list in appveyor.yml! # make sure this list matches artifacts-only branches list in appveyor.yml!
$masterBranches = @("master", "3.2.x"); $masterBranches = @("master", "5.0.x");
$globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs"; $globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs";

2
BuildTools/pipelines-install.ps1

@ -4,7 +4,7 @@ $baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463";
$baseCommitRev = 1; $baseCommitRev = 1;
# make sure this list matches artifacts-only branches list in azure-pipelines.yml! # make sure this list matches artifacts-only branches list in azure-pipelines.yml!
$masterBranches = @("master", "3.2.x"); $masterBranches = @("master", "5.0.x");
$globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs"; $globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs";

2
BuildTools/update-assemblyinfo.ps1

@ -4,7 +4,7 @@ $baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463";
$baseCommitRev = 1; $baseCommitRev = 1;
# make sure this list matches artifacts-only branches list in appveyor.yml! # make sure this list matches artifacts-only branches list in appveyor.yml!
$masterBranches = @("master", "3.2.x"); $masterBranches = @("master", "5.0.x");
$globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs"; $globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs";

2
ILSpy/Properties/AssemblyInfo.template.cs

@ -37,7 +37,7 @@ internal static class RevisionClass
{ {
public const string Major = "5"; public const string Major = "5";
public const string Minor = "0"; public const string Minor = "0";
public const string Build = "0"; public const string Build = "1";
public const string Revision = "$INSERTREVISION$"; public const string Revision = "$INSERTREVISION$";
public const string VersionName = null; public const string VersionName = null;

2
appveyor.yml

@ -43,7 +43,7 @@ for:
- branches: - branches:
only: only:
- master - master
- 3.2.x - 5.0.x
artifacts: artifacts:
- path: ILSpy_binaries.zip - path: ILSpy_binaries.zip
name: ILSpy %APPVEYOR_REPO_BRANCH% %ILSPY_VERSION_NUMBER% binaries name: ILSpy %APPVEYOR_REPO_BRANCH% %ILSPY_VERSION_NUMBER% binaries

5
azure-pipelines.yml

@ -1,11 +1,10 @@
trigger: trigger:
- master - master
- msix - 5.0.x
- 3.2.x
pr: pr:
- master - master
- 3.2.x - 5.0.x
variables: variables:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true

Loading…
Cancel
Save