File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Microsoft.Toolkit.Uwp.SampleApp/SamplePages/SystemInformation
Microsoft.Toolkit.Uwp/Helpers Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 3838 public PackageVersion FirstVersionInstalled => SystemInformation.Instance.FirstVersionInstalled;
3939
4040 // To get the previous version installed
41- public string PreviousVersionInstalled => SystemInformation.Instance.PreviousVersionInstalled.ToFormattedString() ;
41+ public PackageVersion PreviousVersionInstalled => SystemInformation.Instance.PreviousVersionInstalled;
4242
4343 // To get the first time the app was launched
4444 public DateTime FirstUseTime => SystemInformation.Instance.FirstUseTime;
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ public static async Task LaunchStoreForReviewAsync()
124124 /// <summary>
125125 /// Gets the previous version of the app that was installed.
126126 /// This will be the current version if a previous version of the app was installed
127- /// before using SystemInformation or if the app is not updated.
127+ /// before using <see cref=" SystemInformation"/> or if the app is not updated.
128128 /// </summary>
129129 public PackageVersion PreviousVersionInstalled { get ; }
130130
You can’t perform that action at this time.
0 commit comments