Italbytz.Graph.Abstractions 1.0.0-preview.5

This is a prerelease version of Italbytz.Graph.Abstractions.
dotnet add package Italbytz.Graph.Abstractions --version 1.0.0-preview.5
                    
NuGet\Install-Package Italbytz.Graph.Abstractions -Version 1.0.0-preview.5
                    
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="Italbytz.Graph.Abstractions" Version="1.0.0-preview.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Italbytz.Graph.Abstractions" Version="1.0.0-preview.5" />
                    
Directory.Packages.props
<PackageReference Include="Italbytz.Graph.Abstractions" />
                    
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 Italbytz.Graph.Abstractions --version 1.0.0-preview.5
                    
#r "nuget: Italbytz.Graph.Abstractions, 1.0.0-preview.5"
                    
#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 Italbytz.Graph.Abstractions@1.0.0-preview.5
                    
#: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=Italbytz.Graph.Abstractions&version=1.0.0-preview.5&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Italbytz.Graph.Abstractions&version=1.0.0-preview.5&prerelease
                    
Install as a Cake Tool

nuget-graph

Documentation

nuget-graph provides the Italbytz.Graph.* package family for graph contracts, algorithm implementations, and UI-specific rendering helpers for Blazor and .NET MAUI.

Use this repository if you want to:

  • build graph-based features on reusable abstractions
  • run minimum spanning tree or shortest path logic in .NET
  • render graph state in Blazor or .NET MAUI applications
  • explore the packages through a live browser sample

Documentation

  • Product documentation: https://italbytz.github.io/nuget-graph/
  • Live Blazor sample: https://italbytz.github.io/nuget-graph/sample/

Quick start

Install the packages you need in your application:

dotnet add package Italbytz.Graph
dotnet add package Italbytz.Graph.Blazor

For a Blazor application, add the reusable graph viewport from Italbytz.Graph.Blazor and provide graph/state data from Italbytz.Graph.

Choose a package

  • Use Italbytz.Graph.Abstractions for graph contracts such as IUndirectedGraph<TVertex, TEdge> and solver-facing abstractions.
  • Use Italbytz.Graph for concrete graph implementations, algorithms, and UI-neutral visualization/state builders such as SVG layout projection and traversal timelines.
  • Use Italbytz.Graph.Maui when you need graph drawing helpers for .NET MAUI applications.
  • Use Italbytz.Graph.Blazor when you need the reusable SVG viewport, interaction logic, and state-aware rendering in Blazor.

Getting started

The typical consumption model is:

  1. Reference Italbytz.Graph for graph models and algorithms.
  2. Add Italbytz.Graph.Blazor or Italbytz.Graph.Maui if you need UI rendering.
  3. Build your own application-specific orchestration around the package APIs.

See the published documentation for installation guidance, package selection, sample usage, and API reference.

Sample

  • A runnable Blazor sample lives under samples/Italbytz.Graph.Blazor.Sample/.
  • It demonstrates MST step navigation, graph-state rendering, browser pan/zoom, and the reusable Italbytz.Graph.Blazor viewport against graphs from Italbytz.Graph.
  • Run it locally with dotnet run --project samples/Italbytz.Graph.Blazor.Sample/Italbytz.Graph.Blazor.Sample.csproj.

Quality checks

This repository includes:

  • solution-level restore/build/pack validation
  • dedicated build validation for the Blazor sample app
  • local preview artifacts under artifacts/packages/
  • GitHub Actions release automation in .github/workflows/ci.yml

Local validation

dotnet restore nuget-graph.sln
dotnet build nuget-graph.sln -c Release -v minimal
dotnet build samples/Italbytz.Graph.Blazor.Sample/Italbytz.Graph.Blazor.Sample.csproj -c Release -v minimal
dotnet pack nuget-graph.sln -c Release --output ./artifacts/packages -v minimal
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Italbytz.Graph.Abstractions:

Package Downloads
Italbytz.Graph

Graph data structures and solver implementations.

Italbytz.Graph.Maui

Graph drawing helpers for .NET MAUI.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-preview.5 90 5/19/2026
1.0.0-preview.4 101 4/21/2026
1.0.0-preview.3 165 4/11/2026