You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Plugin.Maui.FormsMigration/VersionTracking/LegacyVersionTracking.shared.cs
+46-7Lines changed: 46 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,17 @@
1
1
usingMicrosoft.Maui.ApplicationModel;
2
+
usingMicrosoft.Maui.Storage;
2
3
3
4
namespacePlugin.Maui.FormsMigration;
4
5
6
+
/// <summary>
7
+
/// The LegacyVersionTracking API can be used to access the legacy Xamarin application version tracking information in your .NET MAUI app.
8
+
/// </summary>
9
+
/// <remarks>Important: make sure that your .NET MAUI app version is higher than the legacy application version number. Not doing so might have unexpected results.</remarks>
/// Transfers the version and/or build number information from the legacy Xamarin app to the .NET MAUI Version Tracking data store.
33
+
/// </summary>
34
+
/// <param name="includeVersionInfo">Determines whether or not version number information should be included in the transfer.</param>
35
+
/// <param name="includeBuildInfo">Determines whether or not build number information should be included in the transfer.</param>
36
+
/// <param name="clearMauiVersionHistory">Determines whether or not to clear the current .NET MAUI app version history before transferring the legacy Xamarin app history.</param>
37
+
/// <remarks>When not setting <paramref name="clearMauiVersionHistory"/> to <see langword="true"/>, newer version/build numbers might appear before the legacy version/build number history.</remarks>
0 commit comments