Repl.Defaults 0.12.0-dev.123

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

Repl.Defaults

Website: repl.yllibed.org

Repl.Defaults layers DI and “batteries included” composition on top of Repl.Core.

It provides:

  • ReplApp facade
  • default composition profiles (e.g. UseDefaultInteractive)
  • hosted-session primitives (StreamedReplHost) used by transport integrations

Install

dotnet add package Repl.Defaults

Minimal app

using Repl;

var app = ReplApp.Create().UseDefaultInteractive();
app.Map("hello", () => "world");

return app.Run(args);

Process signals

Process-owning profiles cooperatively translate a first Ctrl+C event, Ctrl+Break on Windows, or SIGTERM on supported Unix platforms into handler cancellation. An unprofiled app and embedded hosts remain caller-owned by default; Repl does not claim their standalone signals. Configure this per run with ReplRunOptions.ProcessSignalHandling; see the configuration reference for exit codes 130/143, second-signal escalation, token lifetime, and platform limits.

Docs

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 (6)

Showing the top 5 NuGet packages that depend on Repl.Defaults:

Package Downloads
Repl

Repl Toolkit meta-package: build one .NET command graph for CLI, interactive REPL, structured output, remote interactive sessions, and MCP-ready automation.

Repl.Mcp

MCP server integration for Repl Toolkit: expose a .NET command graph as AI agent tools, resources, prompts, and MCP Apps.

Repl.Spectre

Spectre.Console integration for Repl Toolkit: rich prompts, IAnsiConsole injection, and table rendering.

Repl.Testing

In-memory multi-session testing toolkit for Repl applications.

Repl.WebSocket

Runs Repl Toolkit sessions over raw WebSocket connections.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.12.0-dev.123 60 9/22/2026
0.12.0-dev.98 71 9/21/2026
0.12.0-dev.82 74 9/15/2026
0.12.0-dev.59 88 9/10/2026
0.12.0-dev.45 96 9/10/2026
0.12.0-dev.28 94 9/10/2026
0.12.0-dev.14 94 9/9/2026
0.12.0-dev.11 10,054 7/29/2026
0.12.0-dev.3 86 7/16/2026
0.12.0-dev.2 86 7/15/2026
0.11.0 6,534 7/15/2026
0.11.0-dev.190 111 7/15/2026
0.11.0-dev.189 102 7/15/2026
0.11.0-dev.181 96 7/15/2026
0.11.0-dev.136 86 7/13/2026
0.11.0-dev.134 97 7/13/2026
0.11.0-dev.127 93 7/11/2026
0.11.0-dev.126 94 7/9/2026
0.11.0-dev.125 87 7/9/2026
0.11.0-dev.124 92 7/9/2026
Loading failed