Skip to content

Commit 870c85f

Browse files
Update Microsoft.Toolkit.Uwp/Helpers/ObjectStorage/SystemSerializer.cs
Co-authored-by: Michael Hawker MSFT (XAML Llama) <[email protected]>
1 parent c6184ed commit 870c85f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)