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
*[Add a generic cross platform serialization support](https://github.com/akkadotnet/Hyperion/pull/208)
3
-
4
-
# Cross platform serialization
5
-
6
-
You can now address any cross platform package serialization differences by providing a list of package name transformation lambda function into the `SerializerOptions` constructor. The package name will be passed into the lambda function before it is deserialized, and the result of the string transformation is used for deserialization instead of the original package name.
7
-
8
-
This short example shows how to address the change from `System.Drawing` in .NET Framework to `System.Drawing.Primitives` in .NET Core:
9
-
10
-
```
11
-
Serializer serializer;
12
-
#if NETFX
13
-
serializer = new Serializer(new SerializerOptions(
14
-
packageNameOverrides: new List<Func<string, string>> {
0 commit comments