NStorage 0.0.6

dotnet add package NStorage --version 0.0.6
                    
NuGet\Install-Package NStorage -Version 0.0.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NStorage" Version="0.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NStorage" Version="0.0.6" />
                    
Directory.Packages.props
<PackageReference Include="NStorage" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NStorage --version 0.0.6
                    
#r "nuget: NStorage, 0.0.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=NStorage&version=0.0.6
                    
Install NStorage as a Cake Addin
#tool nuget:?package=NStorage&version=0.0.6
                    
Install NStorage as a Cake Tool

Managed key-value storage

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.6 1,844 11/30/2014
0.0.5.1 1,297 11/27/2014
0.0.4.3 1,294 11/26/2014
0.0.3 1,432 11/20/2014

This is a beta version.
I strongly advice not to use it until the release.

v0.0.6
- Null values are marked explicitly in the storage format.
 Now we can make difference between null string and empty string.

v0.0.5
- Customizable portable formats for primitive data types:
-- Int32
-- Int64
-- float
-- double
-- decimal
-- DateTime
-- DateTimeOffset
-- TimeSpan
-- string

v0.0.4
- Support for multiple typed collections of the same type.
- Support for Nullable primitive types reading and writing.
- Support for DateTime and DateTimeOffset types in UTC.

v0.0.3
- Typed collections support (experimental).
- API for loading storage changed, now user must create collections by hand, this is done to quickly get type information for typed collections.
- Storage collection semantics changed, now all items are added by reference, if you modify added item, you will then save with modified data, Update call is removed from collection.

v0.0.2
- Added GetAll method to collection, missing in 0.0.1