Monica.Markdown 1.0.0-rc.5

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

Monica

Architecture agents can follow. Systems humans can inspect.

Monica is an agent-governed application architecture for observable .NET backends. Its packages provide host-scoped module composition, typed DDD ProjectUnits, infrastructure adapters, operational dashboards, and runtime diagnostics.

Install

Install only the capabilities the host uses:

dotnet add package Monica.ProjectUnits --prerelease
dotnet add package Monica.JobScheduler --prerelease
dotnet add package Monica.JobScheduler.UI --prerelease

Compose one host

using Monica.Core.Modularity.Extensions;
using Monica.Modules;

var builder = WebApplication.CreateBuilder(args);

builder.AddMonica(monica =>
{
    monica.ConfigureApplication(options =>
    {
        options.AppName = "Orders";
        options.AppId = "orders";
    });

    monica.AddProjectUnits();

    monica.AddJobScheduler()
        .UseInMemoryMetadataRepository()
        .UseSchedulerScope("orders")
        .UseInMemoryProvider();

    monica.AddJobSchedulerUI();
});

var app = builder.Build();
app.UseMonica();
app.MapMonica();
app.Run();

AddMonica(...) records and validates the complete module graph for this host before applying registrations. The composition is isolated from other hosts in the same process.

Maturity tiers

  • Stable: Core, ProjectUnits, WebApi, Configuration, Repository, JobScheduler, OpenTelemetry, and UI runtime inspection.
  • Integrations: optional EF Core, Kafka, Redis/StackExchange, Dapr, SignalR, and other provider adapters.
  • Labs: fast-moving AI/RAG/MCP, DataChannel, DevOps and profiling, Office, and Experimental capabilities.

The package catalog is validated in CI: Stable can depend only on Stable, Integrations can depend on Stable or Integrations, and Labs may opt into any tier.

Learn more

Monica is MIT licensed and remains pre-1.0 while its public architecture is finalized.

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

Showing the top 1 NuGet packages that depend on Monica.Markdown:

Package Downloads
Monica.AI

AI service integration for Monica framework with support for OpenAI and Anthropic, providing unified interfaces for AI capabilities using Microsoft.Extensions.AI.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-rc.5 43 7/22/2026
1.0.0-rc.2 105 5/9/2026
1.0.0-rc.1 78 5/6/2026

Monica 1.0 release-candidate line for validation before the stable release. Introduces host-bound AddMonica composition, deterministic module-graph validation, a dedicated ProjectUnits package, host-isolated runtime catalogs, Stable/Integrations/Labs maturity tiers, official templates, and an observable reference application.