update mono build

This commit is contained in:
Luke Pulverenti
2014-07-09 10:39:04 -04:00
parent e02bf33df3
commit 9b8c0d68ce
15 changed files with 74 additions and 16 deletions

View File

@@ -632,6 +632,7 @@ namespace MediaBrowser.Common.Implementations
return parts;
}
private Version _version;
/// <summary>
/// Gets the current application version
/// </summary>
@@ -640,7 +641,7 @@ namespace MediaBrowser.Common.Implementations
{
get
{
return GetType().Assembly.GetName().Version;
return _version ?? (_version = GetType().Assembly.GetName().Version);
}
}