From 1ba6a304da101b1f2569957d491c4e95588f6801 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 24 Jun 2018 10:45:36 +0200 Subject: [PATCH] Set VersionName = "rc" --- BuildTools/appveyor-install.ps1 | 2 +- BuildTools/update-assemblyinfo.ps1 | 2 +- ILSpy/Properties/AssemblyInfo.template.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BuildTools/appveyor-install.ps1 b/BuildTools/appveyor-install.ps1 index 24aab0a0e7..9897ab8273 100644 --- a/BuildTools/appveyor-install.ps1 +++ b/BuildTools/appveyor-install.ps1 @@ -3,7 +3,7 @@ $ErrorActionPreference = "Stop" $baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463"; $baseCommitRev = 1; -$masterBranches = @("master", "3.0.x", "3.1.x"); +$masterBranches = @("master", "3.2.x"); $globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs"; diff --git a/BuildTools/update-assemblyinfo.ps1 b/BuildTools/update-assemblyinfo.ps1 index c74d06111a..b5fbe0abae 100644 --- a/BuildTools/update-assemblyinfo.ps1 +++ b/BuildTools/update-assemblyinfo.ps1 @@ -3,7 +3,7 @@ $baseCommit = "d779383cb85003d6dabeb976f0845631e07bf463"; $baseCommitRev = 1; -$masterBranches = @("master", "3.0.x", "3.1.x"); +$masterBranches = @("master", "3.2.x"); $globalAssemblyInfoTemplateFile = "ILSpy/Properties/AssemblyInfo.template.cs"; diff --git a/ILSpy/Properties/AssemblyInfo.template.cs b/ILSpy/Properties/AssemblyInfo.template.cs index ebad84eea6..e6b5f2bb44 100644 --- a/ILSpy/Properties/AssemblyInfo.template.cs +++ b/ILSpy/Properties/AssemblyInfo.template.cs @@ -42,7 +42,7 @@ internal static class RevisionClass public const string Minor = "2"; public const string Build = "0"; public const string Revision = "$INSERTREVISION$"; - public const string VersionName = "beta"; + public const string VersionName = "rc"; public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; }