Icod.TermInfo.Source 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Icod.TermInfo.Source --version 1.2.0
                    
NuGet\Install-Package Icod.TermInfo.Source -Version 1.2.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="Icod.TermInfo.Source" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Icod.TermInfo.Source" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Icod.TermInfo.Source" />
                    
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 Icod.TermInfo.Source --version 1.2.0
                    
#r "nuget: Icod.TermInfo.Source, 1.2.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.
#:package Icod.TermInfo.Source@1.2.0
                    
#: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=Icod.TermInfo.Source&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Icod.TermInfo.Source&version=1.2.0
                    
Install as a Cake Tool

Icod.TermInfo.Source

Icod.TermInfo.Source is the optional managed terminfo source-language layer for Icod.TermInfo.

The package is intentionally separate from the stable runtime package. Ordinary applications that only load compiled terminfo or use TerminalDescription values continue to reference Icod.TermInfo alone.

Install

For the 1.2.0 release:

dotnet add package Icod.TermInfo.Source --version 1.2.0

The package depends on the matching Icod.TermInfo version and targets net8.0, net9.0, and net10.0.

Version 1.2.0 coordinates Source with the 1.2 compiler release and does not change the frozen 1.1 source-language public API or semantics.

What the 1.1 line provides

The completed 1.1 source-language path includes:

  • deterministic .ti lexical analysis with source spans and diagnostics;
  • terminfo string and numeric source-value semantics;
  • unresolved documents, entries, fields, aliases, and descriptions;
  • standard and extended capability classification against the runtime catalog;
  • cancellation and use= inheritance;
  • bounded inheritance-depth and source-size handling;
  • materialization into the same immutable TerminalDescription model used by compiled acquisition;
  • duplicate source-name and alias warnings with deterministic first-source-order lookup;
  • a checked-in System V/ncurses-oriented source corpus, deterministic mutation fuzzing, and offline T29 source/compiled compatibility fixtures.

No host tic, infocmp, ncurses library, or native payload is required at runtime or by normal CI.

Typical flow

Parse source, resolve a named entry, and materialize it into the runtime model:

using Icod.TermInfo;
using Icod.TermInfo.Source;

TermInfoSourceParseResult parsed =
    TermInfoSourceParser.Parse(
        source,
        "example.ti"
    );

if ( parsed.HasErrors ) {
    throw new InvalidOperationException(
        "The terminfo source contains errors."
    );
}

TermInfoSourceResolveResult resolved =
    TermInfoSourceResolver.Resolve(
        parsed.Document,
        "example"
    );

if ( resolved.Entry is null ) {
    throw new InvalidOperationException(
        "The terminfo entry could not be resolved."
    );
}

TerminalDescription terminal =
    resolved.Entry.ToTerminalDescription();

For source sets that are not already held in one parsed document, use the ITermInfoSourceEntryProvider resolver overload. Provider misses become source diagnostics; provider failures propagate rather than being collapsed into clean misses.

The runtime dependency direction is one-way:

Icod.TermInfo.Source
        |
        v
  Icod.TermInfo

Icod.TermInfo does not depend on this package.

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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 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 (2)

Showing the top 2 NuGet packages that depend on Icod.TermInfo.Source:

Package Downloads
Icod.TermInfo.Compiler

Managed deterministic terminfo compiler for Icod.TermInfo. The 1.2 line compiles .ti source or immutable TerminalDescription values and can publish explicit conventional terminfo directory layouts without native ncurses dependencies.

Icod.TermInfo.Inspection

Managed inspection and semantic-comparison foundation for Icod.TermInfo. The 1.3 line provides canonical terminfo rendering and reusable infocmp-style comparison engines without enlarging the frozen Runtime, Source, or Compiler public contracts.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.8.0 0 9/2/2026
1.7.0 38 9/1/2026
1.6.1 48 9/1/2026
1.6.0 65 8/31/2026
1.5.0 61 8/30/2026
1.4.1 68 8/29/2026
1.4.0 68 8/29/2026
1.3.0 73 8/28/2026
1.2.0 66 8/27/2026
1.2.0-Alpha-7 63 8/27/2026
1.2.0-Alpha-6 60 8/27/2026
1.1.1 57 8/26/2026
1.1.0 53 8/26/2026
1.1.0-Alpha-9 45 8/26/2026
1.1.0-Alpha-7 44 8/26/2026
1.1.0-Alpha-6 46 8/26/2026

1.2.0 coordinates Icod.TermInfo.Source with the completed 1.2 compiler release while preserving the frozen 1.1 source-language public API, semantics, and 1.0.0.0 assembly identity.