Releases: thepigeongenerator/BinarySerializer
Releases · thepigeongenerator/BinarySerializer
v0.1.3
v0.1.2
Changelog
- added the ability to exclude fields from serialization using the built-in
NonSerialized
attribute. - dropped the target version from net6.0 to net5.0
v0.1.1
Changelog
- Now serializing / deserializing, utilising reflection.
- More verbose errors if something goes wrong
- Fixed an issue with nested structs not being serialized properly.
- Fixed an issue with arrays not being serialized properly when placed inside a struct.
- Removed
byte[] BinarySerializer.SerializeArray<T>(T obj)
andvoid BinarySerializer.DeserializeArray<T>(byte[] buf)
. Usebyte[] BinarySerializer.SerializeArray<T>(T obj)
andvoid BinarySerializer.Deserialize<T>(byte[] buf)
instead. - Added a
README.md
containing some information about the package.
v0.0.1
created the application, not planning further development unless features feel to be missing or bugs occur.