Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 2ada378

Browse files
Increment version number for builds
1 parent f69918c commit 2ada378

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Main/GlobalAssemblyInfo.cs.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ using System.Reflection;
4343
internal static class RevisionClass
4444
{
4545
public const string Major = "5";
46-
public const string Minor = "1";
46+
public const string Minor = "2";
4747
public const string Build = "0";
4848
public const string Revision = "$INSERTREVISION$";
49-
public const string VersionName = null; // "" is not valid for no version name, you have to use null if you don't want a version name (eg "Beta 1")
49+
public const string VersionName = "Beta"; // "" is not valid for no version name, you have to use null if you don't want a version name (eg "Beta 1")
5050

5151
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
5252
}

src/Main/GlobalAssemblyInfo.vb.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Imports System.Reflection
4141
' DO NOT FORGET TO EDIT the GlobalAssemblyInfo.cs.template!
4242
Friend NotInheritable Class RevisionClass
4343
Public Const Major As String = "5"
44-
Public Const Minor As String = "1"
44+
Public Const Minor As String = "2"
4545
Public Const Build As String = "0"
4646
Public Const Revision As String = "$INSERTREVISION$"
4747

0 commit comments

Comments
 (0)