diff --git a/MediaBrowser.Common/Kernel/BaseKernel.cs b/MediaBrowser.Common/Kernel/BaseKernel.cs index 5b2f97ced..22ecc3315 100644 --- a/MediaBrowser.Common/Kernel/BaseKernel.cs +++ b/MediaBrowser.Common/Kernel/BaseKernel.cs @@ -252,5 +252,16 @@ namespace MediaBrowser.Common.Kernel Logger.LoggerInstance.Dispose(); } } + + /// + /// Gets the current application version + /// + public Version ApplicationVersion + { + get + { + return GetType().Assembly.GetName().Version; + } + } } }