NStorage 0.0.6
dotnet add package NStorage --version 0.0.6
NuGet\Install-Package NStorage -Version 0.0.6
<PackageReference Include="NStorage" Version="0.0.6" />
paket add NStorage --version 0.0.6
#r "nuget: NStorage, 0.0.6"
// Install NStorage as a Cake Addin #addin nuget:?package=NStorage&version=0.0.6 // Install NStorage as a Cake Tool #tool nuget:?package=NStorage&version=0.0.6
Managed key-value storage
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
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