Browse Source

Set VersionName = "rc"

pull/1213/head v3.2-rc
Siegfried Pammer 7 years ago
parent
commit
1ba6a304da
  1. 2
      BuildTools/appveyor-install.ps1
  2. 2
      BuildTools/update-assemblyinfo.ps1
  3. 2
      ILSpy/Properties/AssemblyInfo.template.cs

2
BuildTools/appveyor-install.ps1

@ -3,7 +3,7 @@ $ErrorActionPreference = "Stop" @@ -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";

2
BuildTools/update-assemblyinfo.ps1

@ -3,7 +3,7 @@ @@ -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";

2
ILSpy/Properties/AssemblyInfo.template.cs

@ -42,7 +42,7 @@ internal static class RevisionClass @@ -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$";
}

Loading…
Cancel
Save