Skip to content

Commit

Permalink
Update version for SQL Server 2022 preview
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiisyrovatchenko committed Nov 20, 2021
1 parent e0de5ce commit c57ab74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
[assembly: AssemblyCopyright("Sergii Syrovatchenko")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.0.0.70")]
[assembly: AssemblyFileVersion("1.0.0.70")]
[assembly: AssemblyVersion("1.0.0.71")]
[assembly: AssemblyFileVersion("1.0.0.71")]
4 changes: 2 additions & 2 deletions Server/ServerInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ private string ProductVersion {
return "2017";
case ServerVersion.Sql2019:
return "2019";
case ServerVersion.Sql2021:
return "2021";
case ServerVersion.Sql2022:
return "2022";
default:
return "?";
}
Expand Down
2 changes: 1 addition & 1 deletion Types/ServerVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class ServerVersion {
public const int Sql2016 = 13;
public const int Sql2017 = 14;
public const int Sql2019 = 15;
public const int Sql2021 = 16;
public const int Sql2022 = 16;
}

}

0 comments on commit c57ab74

Please sign in to comment.