This commit is contained in:
Emiliano Magliocca 2021-05-08 16:22:17 +02:00 коммит произвёл Sergio Pedri
Родитель c224e816f1
Коммит cdff22fbe1
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -38,7 +38,7 @@
public PackageVersion FirstVersionInstalled => SystemInformation.Instance.FirstVersionInstalled;
// To get the previous version installed
public string PreviousVersionInstalled => SystemInformation.Instance.PreviousVersionInstalled.ToFormattedString();
public PackageVersion PreviousVersionInstalled => SystemInformation.Instance.PreviousVersionInstalled;
// To get the first time the app was launched
public DateTime FirstUseTime => SystemInformation.Instance.FirstUseTime;

Просмотреть файл

@ -124,7 +124,7 @@ namespace Microsoft.Toolkit.Uwp.Helpers
/// <summary>
/// Gets the previous version of the app that was installed.
/// This will be the current version if a previous version of the app was installed
/// before using SystemInformation or if the app is not updated.
/// before using <see cref="SystemInformation"/> or if the app is not updated.
/// </summary>
public PackageVersion PreviousVersionInstalled { get; }