Skip to content

Commit 09cf213

Browse files
committed
Merge branch 'shweaver/storage-helpers' of https://github.com/windows-toolkit/WindowsCommunityToolkit into shweaver/storage-helpers
2 parents e36c955 + 870c85f commit 09cf213

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Microsoft.Toolkit.Uwp/Helpers/ObjectStorage/IObjectSerializer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Microsoft.Toolkit.Uwp.Helpers
99
/// <summary>
1010
/// A basic serialization service.
1111
/// </summary>
12-
[Obsolete("IObjectSerializer has been migrated to the *.Toolikit package.")]
12+
[Obsolete("IObjectSerializer has been migrated to the Microsoft.Toolkit (CommunityToolkit.Common) package.")]
1313
public interface IObjectSerializer
1414
{
1515
/// <summary>
@@ -28,4 +28,4 @@ public interface IObjectSerializer
2828
/// <returns>The deserialized object.</returns>
2929
T Deserialize<T>(object value);
3030
}
31-
}
31+
}

Microsoft.Toolkit.Uwp/Helpers/ObjectStorage/SystemSerializer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Microsoft.Toolkit.Uwp.Helpers
1212
/// A bare-bones serializer which knows how to deal with primitive types and strings only. It will store them directly based on the <see cref="ApplicationDataContainer"/> API.
1313
/// It is recommended for more complex scenarios to implement your own <see cref="IObjectSerializer"/> based on System.Text.Json, Newtonsoft.Json, or DataContractJsonSerializer see https://aka.ms/wct/storagehelper-migration
1414
/// </summary>
15-
[Obsolete("SystemSerializer has been migrated to the *.Toolikit package.")]
15+
[Obsolete("SystemSerializer has been migrated to the Microsoft.Toolkit (CommunityToolkit.Common) package.")]
1616
public class SystemSerializer : IObjectSerializer
1717
{
1818
/// <summary>
@@ -47,4 +47,4 @@ public object Serialize<T>(T value)
4747
return value;
4848
}
4949
}
50-
}
50+
}

0 commit comments

Comments
 (0)