forked from grandnode/grandnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrandVersion.cs
37 lines (30 loc) · 1004 Bytes
/
GrandVersion.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace Grand.Core
{
public static class GrandVersion
{
/// <summary>
/// Gets the major version
/// </summary>
public const string MajorVersion = "4";
/// <summary>
/// Gets the minor version
/// </summary>
public const string MinorVersion = "90";
/// <summary>
/// Gets the patch version
/// </summary>
public const string PatchVersion = "0-develop";
/// <summary>
/// Gets the full version
/// </summary>
public const string FullVersion = MajorVersion + "." + MinorVersion + "." + PatchVersion;
/// <summary>
/// Gets the Supported DB version
/// </summary>
public const string SupportedDBVersion = MajorVersion + "." + MinorVersion;
/// <summary>
/// Gets the Supported plugin version
/// </summary>
public const string SupportedPluginVersion = MajorVersion + "." + MinorVersion;
}
}