Renamed VERSION_NUMBER to VersionNumber

This commit is contained in:
Diva Canto
2014-12-30 15:27:28 -08:00
parent 7466ef0525
commit 2138d5c7f8
16 changed files with 30 additions and 30 deletions

View File

@@ -29,7 +29,7 @@ namespace OpenSim
{
public class VersionInfo
{
public const string VERSION_NUMBER = "0.8.1.0";
public const string VersionNumber = "0.8.1.0";
private const Flavour VERSION_FLAVOUR = Flavour.Dev;
public enum Flavour
@@ -46,7 +46,7 @@ namespace OpenSim
public static string Version
{
get { return GetVersionString(VERSION_NUMBER, VERSION_FLAVOUR); }
get { return GetVersionString(VersionNumber, VERSION_FLAVOUR); }
}
public static string GetVersionString(string versionNumber, Flavour flavour)