Monica.Core
1.0.0-rc.2
dotnet add package Monica.Core --version 1.0.0-rc.2
NuGet\Install-Package Monica.Core -Version 1.0.0-rc.2
<PackageReference Include="Monica.Core" Version="1.0.0-rc.2" />
<PackageVersion Include="Monica.Core" Version="1.0.0-rc.2" />
<PackageReference Include="Monica.Core" />
paket add Monica.Core --version 1.0.0-rc.2
#r "nuget: Monica.Core, 1.0.0-rc.2"
#:package Monica.Core@1.0.0-rc.2
#addin nuget:?package=Monica.Core&version=1.0.0-rc.2&prerelease
#tool nuget:?package=Monica.Core&version=1.0.0-rc.2&prerelease
Monica Framework
Monica is Modular .NET Infrastructure for C# AI-era backends.
It provides typed DDD ProjectUnits, composable infrastructure modules, built-in Blazor dashboards, and bundled agent skills so AI-assisted backend work remains observable as a codebase grows.
Release Status
1.0.0-rc.2 is a release candidate for validation and feedback before the stable 1.0.0 release. Breaking changes may still happen before the stable release.
Installation
Install only the modules you need:
dotnet add package Monica.Core --version 1.0.0-rc.2
dotnet add package Monica.JobScheduler --version 1.0.0-rc.2
dotnet add package Monica.JobScheduler.UI --version 1.0.0-rc.2
JobScheduler Example
using Microsoft.Extensions.Logging;
using Monica.JobScheduler.Abstractions;
using Monica.JobScheduler.Annotations;
using Monica.Modules;
Mo.AddJobScheduler()
.UseInMemoryMetadataRepository()
.UseSchedulerScope("local-dev")
.UseInMemoryProvider();
[JobConfig(
JobName = "Heartbeat",
Description = "Writes a heartbeat every five minutes.",
CronSchedule = "0 */5 * * * *")]
public sealed class HeartbeatJob(ILogger<HeartbeatJob> logger) : RecurringJob
{
public override Task ExecuteAsync(CancellationToken cancellationToken)
{
logger.LogInformation("Heartbeat job ran.");
return Task.CompletedTask;
}
}
Add Mo.AddJobSchedulerUI() when you want the browser dashboard.
Module Families
- Core infrastructure:
Monica.Core,Monica.Tool,Monica.DependencyInjection - DDD and application flow:
Monica.Core,Monica.Repository,Monica.WebApi,Monica.AutoModel - Background and ops:
Monica.JobScheduler,Monica.Configuration,Monica.Logging,Monica.StateStore - UI modules:
Monica.UI,Monica.Framework.UI,Monica.JobScheduler.UI,Monica.Configuration.UI - AI and integration:
Monica.AI,Monica.Dapr,Monica.EventBus,Monica.SignalR - Code generation:
Monica.Framework.Generators,Monica.Generators.AutoController
Documentation
- Documentation site: https://monica.dpdns.org/
- Repository: https://github.com/Tairitsua/Monica
- Example docs host: https://github.com/Tairitsua/Monica.Docs
- Issues: https://github.com/Tairitsua/Monica/issues
License
MIT License. See LICENSE.txt in the repository.
| Product | Versions 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. |
-
net10.0
- ExpressionDebugger (>= 2.2.1)
- Mapster (>= 7.4.0)
- Mapster.DependencyInjection (>= 1.0.1)
- Microsoft.AspNetCore.Mvc.Core (>= 2.3.9)
- Microsoft.AspNetCore.OpenApi (>= 10.0.2)
- Microsoft.Extensions.DependencyModel (>= 10.0.2)
- Microsoft.Extensions.Resilience (>= 10.2.0)
- Microsoft.OpenApi (>= 2.3.0)
- Monica.Tool (>= 1.0.0-rc.2)
NuGet packages (26)
Showing the top 5 NuGet packages that depend on Monica.Core:
| Package | Downloads |
|---|---|
|
Monica.UI
Blazor UI components and utilities for Monica framework based on MudBlazor, providing reusable UI building blocks and theming support. |
|
|
Monica.StateStore
State management, distributed persistence, task progress tracking, and cancellation coordination for Monica framework. |
|
|
Monica.EventBus
Event bus abstractions and in-memory implementation for Monica framework, providing publish-subscribe patterns for loosely coupled event-driven architecture. |
|
|
Monica.DependencyInjection
Enhanced dependency injection capabilities for Monica framework including dynamic proxy support and async interceptors using Castle.Core. |
|
|
Monica.Repository
Repository pattern implementation with Entity Framework Core integration for Monica framework, providing data access abstractions and CRUD operations. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-rc.2 | 197 | 5/9/2026 |
| 1.0.0-rc.1 | 167 | 5/6/2026 |
| 0.1.0-preview.1 | 131 | 1/31/2026 |
Monica 1.0.0-rc.2 release candidate for validation and feedback before the stable 1.0.0 release. Adds global Monica application defaults, endpoint metadata and port constraints, OpenTelemetry metrics dashboards, SignalR diagnostics, UI localization improvements, and NuGet static web asset fixes.