Uaine.Archive 0.1.0

dotnet add package Uaine.Archive --version 0.1.0
NuGet\Install-Package Uaine.Archive -Version 0.1.0
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="Uaine.Archive" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Uaine.Archive --version 0.1.0
#r "nuget: Uaine.Archive, 0.1.0"
#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.
// Install Uaine.Archive as a Cake Addin
#addin nuget:?package=Uaine.Archive&version=0.1.0

// Install Uaine.Archive as a Cake Tool
#tool nuget:?package=Uaine.Archive&version=0.1.0

A C# .NET standard project for managing collections of JSON file stores.

Getting Started

Add source project to solution with reference to get started or install via NuGet

dotnet add package Uaine.Archive
using Uaine.Archive;

// Create an archive
var archive = new Archive<int>("MyIntCollection");

// Create file stores
var fileStore1 = new JsonFileStore<int>("file1.json", "data1", new int[] { 1, 2, 3 });
var fileStore2 = new JsonFileStore<int>("file2.json", "data2", new int[] { 4, 5, 6 });

// Add file stores to the archive
archive.AddFileStore(fileStore1);
archive.AddFileStore(fileStore2);

// Load files by index or data name
var loadedFileByIndex = archive.LoadFileByIndex(0);
var loadedFileByDataName = archive.LoadFileByDataName("data2");
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1.0 86 1/23/2024