Skip to content

Releases: thepigeongenerator/BinarySerializer

v0.1.3

14 Dec 20:20
Compare
Choose a tag to compare

changelog

  • added support for strings!
  • changed the target framework:
- <TargetFramework>net5.0</TargetFramework>
+ <TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netstandard2.1;netstandard2.0</TargetFrameworks>

v0.1.2

13 Dec 14:20
Compare
Choose a tag to compare

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

30 Nov 20:43
Compare
Choose a tag to compare

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) and void BinarySerializer.DeserializeArray<T>(byte[] buf). Use byte[] BinarySerializer.SerializeArray<T>(T obj) and void BinarySerializer.Deserialize<T>(byte[] buf) instead.
  • Added a README.md containing some information about the package.

v0.0.1

29 Nov 22:25
Compare
Choose a tag to compare

created the application, not planning further development unless features feel to be missing or bugs occur.