Closed qmfrederik closed 4 years ago
It turns out that UIDs are represented like this in XML:
<dict> <key>CF$UID</key> <integer>2</integer> </dict>
There's not a lot of documentation, but:
This PR allows you to properly serialize property lists which contain UID entries.
Deserializing is not implemented; you'd manually need to detect dictionaries with CF$UID keys and convert them to UIDs.
CF$UID
UID
Can you implement the deserializing before I publish a nuget?
It turns out that UIDs are represented like this in XML:
There's not a lot of documentation, but:
This PR allows you to properly serialize property lists which contain UID entries.
Deserializing is not implemented; you'd manually need to detect dictionaries with
CF$UID
keys and convert them toUID
s.