diff --git a/WPinternals/ViewModels/AboutViewModel.cs b/WPinternals/ViewModels/AboutViewModel.cs
index fdfedb6..d7bcf94 100644
--- a/WPinternals/ViewModels/AboutViewModel.cs
+++ b/WPinternals/ViewModels/AboutViewModel.cs
@@ -39,5 +39,21 @@ namespace WPinternals
return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Minor;
}
}
+
+ public int BuildVersion
+ {
+ get
+ {
+ return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Build;
+ }
+ }
+
+ public int RevisionVersion
+ {
+ get
+ {
+ return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Revision;
+ }
+ }
}
}
diff --git a/WPinternals/Views/About.xaml b/WPinternals/Views/About.xaml
index 57f09e1..33cdd84 100644
--- a/WPinternals/Views/About.xaml
+++ b/WPinternals/Views/About.xaml
@@ -46,9 +46,11 @@ DEALINGS IN THE SOFTWARE.
-
+
+
+