Sharc.Arc 1.2.80

dotnet add package Sharc.Arc --version 1.2.80
                    
NuGet\Install-Package Sharc.Arc -Version 1.2.80
                    
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="Sharc.Arc" Version="1.2.80" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sharc.Arc" Version="1.2.80" />
                    
Directory.Packages.props
<PackageReference Include="Sharc.Arc" />
                    
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 Sharc.Arc --version 1.2.80
                    
#r "nuget: Sharc.Arc, 1.2.80"
                    
#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.
#:package Sharc.Arc@1.2.80
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Sharc.Arc&version=1.2.80
                    
Install as a Cake Addin
#tool nuget:?package=Sharc.Arc&version=1.2.80
                    
Install as a Cake Tool

Sharc.Arc

Distributed arc file management for the Sharc database engine.

Cross-arc reference resolution, multi-arc fusion, data ingestion, and validation with zero native dependencies.

Features

  • FusedArcContext: Mount N .arc files and query across all fragments with source-arc provenance.
  • ArcResolver: Pluggable URI resolution (arc://local/path, arc://https/url) with security validation.
  • CsvArcImporter: RFC 4180-compliant CSV ingestion with automatic schema inference and type detection.
  • ArcDiffer: Structural diff between two arcs — schema, ledger, and data comparison.
  • ArcValidator: Four-layer validation: format, chain integrity, trust anchors, limits. Never throws.
  • Cloud Locators: HTTP/HTTPS arc loading with Dropbox, Google Drive, and S3 presigned URL support.

Quick Start

using Sharc.Arc;

// Fuse multiple arc files into a unified view
var fused = new FusedArcContext();
fused.Mount(ArcHandle.OpenLocal("conversations.arc"), "conversations");
fused.Mount(ArcHandle.OpenLocal("codebase.arc"), "codebase");

// Query across all fragments with provenance
foreach (var row in fused.Query("commits", maxRows: 100))
    Console.WriteLine($"{row.SourceAlias}: {row.Values[0]}");

// Import CSV data into a new .arc file
var options = new CsvImportOptions { TableName = "patients" };
ArcHandle arc = CsvArcImporter.ImportFile("data.csv", options);

Full Documentation

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
1.2.80 76 2/27/2026
1.2.77 73 2/26/2026
1.2.65 76 2/26/2026
1.2.59 76 2/25/2026