- Serialize any IList type as a Toml array value and not just an array
- Deserialize Toml array values that contain table/array/ values into the proper dotnet object
- Support serializing
IntPtr
andUIntPtr
instances
- Migrated to new ALC structure that simplifies the code and ensures deps are loaded in the ALC
- Added support for Windows PowerShell (5.1)
- WinPS will not run with an ALC but should still load the libraries side by side if needed
- Changed piping behaviour of
ConvertFrom-Toml
to build the final TOML string for each input rather than try and convert each string input as individual TOML entries- This copies the behaviour of
ConvertFrom-Json
and makesGet-Content $path | ConvertFrom-Toml
work as people would expect
- This copies the behaviour of
- Initial version of the
PSToml
module