MinimalCleanArch.Templates
0.1.20-preview
dotnet new install MinimalCleanArch.Templates@0.1.20-preview
MinimalCleanArch Templates
Project templates for bootstrapping Clean Architecture APIs with MinimalCleanArch, using vertical-slice-style use-case organization inside clean dependency boundaries.
Quick Start
Default multi-project app (SQLite):
dotnet new install MinimalCleanArch.Templates
dotnet new mca -n MyApp
cd MyApp
dotnet run --project src/MyApp.Api
Recommended single-project app:
dotnet new mca -n MyApp --single-project --recommended
cd MyApp
dotnet run
Open Scalar at https://localhost:<port>/scalar/v1.
What It Builds
- a Minimal API application that starts with MCA package boundaries already in place instead of leaving architecture decisions implicit
- either a layered multi-project solution or a pragmatic single-project application with the same conceptual separation
- an application where domain, application, infrastructure, and host concerns already follow the intended dependency direction
- optional capabilities such as auth, audit logging, messaging, caching, telemetry, and deployment scripts without hand-assembling the baseline
Choosing a Shape
- Default multi-project template: best when you want strict project boundaries and independent domain/application/infrastructure assemblies.
--single-project: best when you want the same architectural separation but lower solution complexity and faster iteration for smaller services.--recommended: good default for production-oriented APIs that need HTTP polish and operational basics without every optional subsystem.--all: good for exploring the full MCA stack, generated tests, and deployment workflows end to end.
Install
From NuGet:
dotnet new install MinimalCleanArch.Templates
From local packages:
dotnet new uninstall MinimalCleanArch.Templates
dotnet new install ./artifacts/packages
Common Examples
# Default multi-project app
dotnet new mca -n OrderService
# Production-ready API
dotnet new mca -n OrderService --recommended --db sqlserver --docker
# Full-featured app
dotnet new mca -n EnterpriseApp --all --db postgres --tests
# Secure API
dotnet new mca -n SecureApp --auth --db postgres
# Public API with rate limiting
dotnet new mca -n PublicApi --single-project --ratelimiting
For template flags, architecture details, auth notes, and deployment workflows, use the sections below after choosing a starting point.
What Gets Scaffolded
Multi-project (default):
MyApp/
|- MyApp.slnx
|- src/
| |- MyApp.Domain/
| |- MyApp.Application/
| |- MyApp.Infrastructure/
| |- MyApp.Api/
|- tests/
|- Dockerfile
|- docker-compose.yml
Single project:
MyApp/
|- MyApp.csproj
|- Program.cs
|- Domain/
|- Application/
|- Infrastructure/
|- Endpoints/
Try Auth + Scalar Password Flow (5 Minutes)
This is the quickest way to validate OpenIddict + user auth + global Bearer reuse in Scalar.
- Scaffold and run:
dotnet new mca -n QuickAuth --single-project --auth --tests --mcaVersion 0.1.20-preview
cd QuickAuth
dotnet run
Open
https://localhost:<port>/scalar/v1.Register a user with
POST /api/auth/register:
{
"email": "demo@example.com",
"password": "TempPass!123",
"firstName": "Demo",
"lastName": "User"
}
- Click
Authorizein Scalar and use the preconfiguredoauth2password flow:
- Username:
demo@example.com - Password:
TempPass!123
- Call an authenticated endpoint, for example
POST /api/auth/change-password:
{
"currentPassword": "TempPass!123",
"newPassword": "TempPass!456"
}
- Optional: inspect claims with
GET /connect/userinfo.
Notes:
- In Development, Scalar is preconfigured with OAuth2 password flow (
/connect/token) and a preferredoauth2security scheme. - The bearer token is persisted and automatically reused for secured requests.
Try Password Reset Email Quickly (SMTP or API)
- Configure
EmailSettingsinappsettings.json(or user-secrets):
Provider(SmtporApi)SenderEmailAppBaseUrl- SMTP mode:
SmtpServer,Port,EnableSsl, credentials if needed - API mode:
Api:Endpoint, optionalApi:ApiKey,Api:ApiKeyHeaderName,Api:ApiKeyPrefix,Api:Headers
- Example API-mode configuration:
{
"EmailSettings": {
"Provider": "Api",
"SenderEmail": "no-reply@example.com",
"SenderName": "MCA",
"AppBaseUrl": "https://localhost:5001",
"Api": {
"Endpoint": "https://your-email-api.example.com/send",
"ApiKey": "your-api-key",
"ApiKeyHeaderName": "Authorization",
"ApiKeyPrefix": "Bearer",
"Headers": {
"X-Tenant": "demo"
}
}
}
}
The API sender posts Cloudflare Email Sending–compatible JSON (camelCase, nulls omitted):
{
"from": { "address": "no-reply@example.com", "name": "MCA" },
"to": "user@example.com",
"subject": "Subject",
"html": "<p>Body</p>",
"text": "Body"
}
Cloudflare Email Sending example:
{
"EmailSettings": {
"Provider": "Api",
"SenderEmail": "no-reply@yourdomain.com",
"SenderName": "MCA",
"AppBaseUrl": "https://localhost:5001",
"Api": {
"Endpoint": "https://api.cloudflare.com/client/v4/accounts/<account_id>/email/routing/send",
"ApiKey": "<api-token>",
"ApiKeyHeaderName": "Authorization",
"ApiKeyPrefix": "Bearer"
}
}
}
- Trigger reset flow:
POST /api/auth/forgot-passwordwith an email.- Response intentionally does not include reset token.
Use your email provider/local SMTP capture to obtain the link/token.
Complete reset via
POST /api/auth/reset-password.
Try Durable Messaging (Outbox) Quickly
Use SQL Server or PostgreSQL (SQLite is in-memory messaging only).
- Start DB container:
SQL Server:
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=StrongP!12asd" -p 1433:1433 --name sqlserver -d mcr.microsoft.com/mssql/server:2022-latest
PostgreSQL:
docker run -e "POSTGRES_USER=postgres" -e "POSTGRES_PASSWORD=postgres" -e "POSTGRES_DB=mca" -p 5432:5432 --name postgres -d postgres:16-alpine
- Scaffold with messaging + DB provider:
dotnet new mca -n DurableApp --all --db postgres --tests
Deployment Scripts (Generated App)
Generated scripts/ depend on how you scaffold:
Docker Compose / kind (--docker or --all, not with --aspire)
Recommended default: Docker Compose
PowerShell:
pwsh ./scripts/deploy.ps1 -Target compose
pwsh ./scripts/compose-down.ps1 -RemoveVolumes
Bash:
./scripts/deploy.sh --target compose
./scripts/compose-down.sh --remove-volumes
Optional local Kubernetes smoke path (kind):
./scripts/deploy.sh --target kind --image-tag myapp:local
# or: pwsh ./scripts/deploy.ps1 -Target kind -ImageTag myapp:local
Notes:
- Compose is the fastest way to validate full local dependencies (API + DB + cache from
docker-compose.yml). - Compose uses
name: ${COMPOSE_PROJECT_NAME:-mca}; generated compose scripts setCOMPOSE_PROJECT_NAMEfrom the app folder name. - Shared helper:
scripts/smoke-test.sh/.ps1(HTTP readiness poll).
Aspire (--aspire)
Docker-compose assets and compose/kind/deploy scripts are omitted. Instead you get:
./scripts/run-apphost.sh
# or: pwsh ./scripts/run-apphost.ps1
# equivalent: dotnet run --project <Name>.AppHost
Also includes scripts/smoke-test.* for hitting the API once the host is up (use the Aspire dashboard URL / mapped ports).
--aspire and --docker are mutually exclusive (--aspire wins).
Template Options
Presets
| Option | Description |
|---|---|
--recommended |
Includes: serilog, healthchecks, validation, security, caching, ratelimiting |
--all |
Includes: auth, messaging, audit, opentelemetry, storage, docker, tests (plus recommended set) |
Project Structure
| Option | Default | Description |
|---|---|---|
--single-project |
false | Single project instead of multi-project solution |
--tests |
false | Include test projects |
--docker |
false | Include Dockerfile and docker-compose.yml (ignored when --aspire is set) |
--aspire |
false | Include .NET Aspire AppHost + ServiceDefaults for local orchestration |
--storage |
false | Include MinimalCleanArch.Storage (Azure Blob / Azurite signed URLs) |
How Options Affect Architecture
| Option | Main effect on generated solution |
|---|---|
--single-project |
Collapses layers into one project while keeping Domain, Application, Infrastructure, and endpoint folders separate by responsibility |
--tests |
Adds unit and integration test projects or test targets for the generated app |
--docker |
Adds container build and local deployment assets (Dockerfile, docker-compose.yml, generated scripts/) |
--recommended |
Enables common API-facing concerns such as logging, validation, health checks, security, caching, and rate limiting |
--all |
Builds on --recommended and adds auth, messaging, audit, telemetry, storage, tests, and deployment assets |
Features
| Option | Description |
|---|---|
--serilog |
Structured logging with Serilog |
--healthchecks |
Health check endpoints |
--validation |
FluentValidation integration |
--auth |
OpenIddict auth (Identity + OAuth2/OIDC) |
--security |
Encryption, security headers, CORS |
--caching |
In-memory and Redis caching |
--ratelimiting |
Global + endpoint-specific rate limiting with 429 ProblemDetails |
--messaging |
Wolverine domain events |
--audit |
Audit logging |
--opentelemetry |
Distributed tracing |
--storage |
Blob storage via MinimalCleanArch.Storage (Azure Blob / Azurite) |
Feature-to-Layer Impact
| Feature | Generated layers most affected | What changes |
|---|---|---|
--validation |
Application, Api |
Adds validators plus API-side validation registration |
--auth |
Infrastructure, Api |
Adds Identity/OpenIddict persistence, auth endpoints, and security setup |
--security |
Infrastructure, Api |
Adds encryption/security registrations and HTTP security defaults |
--caching |
Infrastructure, Api |
Adds cache configuration and host wiring |
--messaging |
Application, Infrastructure, Api |
Adds domain-event handlers/contracts plus Wolverine setup and transport wiring |
--audit |
Infrastructure, Api |
Adds audit persistence, interception, and registration |
--opentelemetry |
Api |
Adds tracing/telemetry host configuration |
--storage |
Api (host) |
Adds IBlobStorage registration, /api/storage/* signed URL endpoints, Azurite in compose when --docker |
--docker |
solution root / host assets | Adds container and deployment workflow assets, not domain rules |
Database
| Option | Default | Description |
|---|---|---|
--db sqlite |
Yes | SQLite |
--db sqlserver |
SQL Server | |
--db postgres |
PostgreSQL | |
--dbName <name> |
MCA_DB | Database name for generated connection strings/compose settings |
Versions
| Option | Default | Description |
|---|---|---|
--mcaVersion <version> |
0.1.20-preview | MinimalCleanArch package version |
--framework <tfm> |
net10.0 | Target framework (net9.0 or net10.0) |
Architecture Overview
Generated apps follow a hybrid approach: Clean Architecture for dependency direction and DDD-style domain modeling, plus vertical-slice/CQRS-style handlers for use-case organization.
Architectural Style
- Clean Architecture for dependency direction and framework isolation
- vertical-slice/CQRS-style organization for commands, queries, handlers, and endpoints
- not a classic “service layer per entity” template; the generated app is intended to group behavior around use cases
Host Bootstrap (preferred MCA APIs)
When any API polish feature is enabled (--validation, --security, --ratelimiting, --healthchecks, --caching, --serilog, --opentelemetry, or via --recommended / --all), the generated host uses:
// Service registration
builder.Services.AddMinimalCleanArchApi(options =>
{
options.AddValidatorsFromAssemblyContaining<CreateTodoCommandValidator>();
options.EnableRateLimiting = true;
options.ConfigureRateLimiting = config =>
builder.Configuration.GetSection("RateLimiting").Bind(config);
});
// Middleware pipeline (correlation ID → security headers → error handling → rate limiting)
app.UseMinimalCleanArchApiDefaults(pipeline =>
{
pipeline.UseRateLimiting = true;
pipeline.UseApiSecurityHeaders = true;
});
Feature blocks for database, auth, messaging, audit, OpenTelemetry exporters, and health-check probes remain explicit next to that bootstrap. Prefer these entry points over hand-wiring correlation middleware, problem details, validators, and rate limiting separately.
MinimalCleanArch.Extensions is referenced whenever those polish features are on so the host can call the preferred bootstrap APIs.
Generated Dependency Direction
Domaindepends on nothing else in the generated solution (no ASP.NET Identity, EF, or Wolverine).Applicationdepends onDomain(and Identity stores only when--authis on, forApplicationUser/UserManager).Infrastructuredepends onApplicationandDomain.Apidepends onApplication,Infrastructure, andDomain.- In single-project mode, folders stay separated by responsibility even though they compile into one project.
- HTTP, persistence, messaging, and encryption concerns stay out of
Domain.
What Stays Where
Domain: business entities (e.g.Todo), invariants, repository contracts, value objects, domain events — no infrastructure frameworks and no ASP.NET Identity.Application: commands, queries, use-case handlers (own the business orchestration), specifications, validators, and when--authis onApplicationUserunderApplication/Identity.Infrastructure: EF Core, OpenIddict wiring, repository implementations, email senders, encryption, caching implementations, and external integrations.Apior top-level host: endpoint mapping, middleware, auth policies, OpenAPI/Scalar, Wolverine host setup, service registration.
This is the main rule the template is trying to preserve: dependencies point inward toward the domain model, while frameworks and operational concerns stay at the edges.
Layer Responsibilities
Domain: entities, value objects, domain events, repository contracts, core rules. No infrastructure dependencies.Application: commands/queries, handlers, and orchestration of use-cases using domain contracts.Infrastructure: EF Core, Identity/OpenIddict wiring, email providers, repository implementations, external integrations.Api(multi-project) orEndpoints+Program.cs(single-project): HTTP transport, endpoint mapping, auth policies, middleware.
Dependency Direction
Domaindepends on nothing else.Applicationdepends onDomain.Infrastructuredepends onApplicationandDomain.Apidepends on all required layers and composes the app at startup.
Typical Request Flow
- Endpoint receives HTTP request and maps payload to command/query.
- Optional FluentValidation runs via
HttpContext.ValidateAsync(...)(orWithValidation<T>()for body parameters). - Endpoint invokes the application handler (directly, or via Wolverine
IMessageBuswhen--messagingis on). - Handler runs the use case through domain contracts/repositories and specifications.
- Domain entities enforce invariants and may raise domain events.
- Infrastructure persists state; messaging host publishes/handles events when enabled.
- Endpoint maps
Result/Result<T>withMatchHttp/ToProblemto RFC 7807 ProblemDetails.
Aspire orchestration (--aspire)
When --aspire is set, the scaffold includes:
{Name}.AppHost— starts Postgres or SQL Server (when--dbis not sqlite), optional Redis (when caching is on), and the API{Name}.ServiceDefaults— OTLP telemetry, resilience,/alive+/health/ready
# Recommended happy path
dotnet new mca -n OrderService --recommended --aspire --db postgres
cd OrderService
dotnet run --project OrderService.AppHost
# or: ./scripts/run-apphost.sh
Blob storage (--storage)
When --storage (or --all) is set:
- References
MinimalCleanArch.Storage - Registers
AddBlobStorage(configuration)(sectionBlobStorage) BlobStorage:Provider=Azure(default, Azurite-compatible) orR2(Cloudflare R2)- Maps
/api/storage/upload-urland/api/storage/download-url - With
--docker, adds an Azurite service and wires the API connection string (Azure provider)
Local defaults use the Azurite/devstore connection (UseDevelopmentStorage=true). Override BlobStorage:ConnectionString / ContainerName for production Azure accounts, or set Provider to R2 and fill R2ServiceUrl, R2AccessKeyId, R2SecretAccessKey, R2BucketName (optional R2PublicBaseUrl, KeyPrefix).
dotnet new mca -n MediaApi --recommended --storage --docker
# start Azurite + API via compose, then:
# POST /api/storage/upload-url { "blobKey": "uploads/a.pdf", "contentType": "application/pdf", "byteLength": 1024 }
Connection names injected by AppHost (stable; not renamed with the project):
| Resource | Connection string name |
|---|---|
| Database | appdb |
| Redis (if caching) | redis |
Notes:
- Requires Docker for container resources.
--aspiredisables docker-compose generation (--docker/--allcompose assets are omitted).- Prefer
--db postgresor--db sqlserverwith Aspire; SQLite still works but without a DB container. - When Aspire OTLP is present, console OpenTelemetry exporters from
--opentelemetryare skipped to avoid double wiring.
Database initialization
Generated apps initialize the schema at startup based on Database:* settings:
| Setting | Production default | Development default |
|---|---|---|
Database:EnsureCreated |
false |
true |
Database:ApplyMigrations |
false |
true |
Behavior:
- SQLite: uses
EnsureCreated(migrations flag is ignored for SQLite in the initializer). - SQL Server / PostgreSQL: prefers
Database.Migrate(). If no EF migrations exist yet, Development falls back toEnsureCreatedwith a warning log. - Outside Development, missing migrations with
ApplyMigrations=truefails fast (no silent empty schema).
Create migrations after scaffolding (SQL Server/PostgreSQL):
# Single-project
dotnet ef migrations add InitialCreate -o Infrastructure/Data/Migrations
# Multi-project
dotnet ef migrations add InitialCreate \
--project src/MyApp.Infrastructure \
--startup-project src/MyApp.Api \
-o Data/Migrations
A design-time AppDbContextFactory is included for EF tools.
Auth and Security Notes
--authautomatically enables--security.- CORS is config-driven via
Cors:AllowedOrigins. Empty list: Development allows any origin; non-Development allows none (fail closed). Encryption:Keyis empty in productionappsettings.json. Development uses Data Protection helpers (or a demo key); outside Development a real key is required when--securityis enabled—use user-secrets, environment variables, or a vault.- Password reset endpoints do not return reset tokens in API responses.
- OAuth demo endpoints (
/oauth/demo/*) and OpenIddict dev endpoints (/dev/openiddict/*) are mapped only in Development. - Default demo/scalar client id is
OpenIddict:Clients:Web:ClientId(defaults tomca-web-client). You can override per-request with/oauth/demo/start?clientId=.... - Development defaults seed a bootstrap admin (
admin@example.com/Admin123!) viaappsettings.Development.json. - OpenIddict dev client redirect URIs are seeded from both
App:BaseUrland runtimeASPNETCORE_URLS, reducing localhost port mismatch issues. - Bootstrap admin seeding is controlled by
Seed:*settings (appsettings.jsondefaults to disabled;appsettings.Development.jsonenables a demo admin by default). - Outside Development, OpenIddict client secret and certificate settings are validated on startup.
External Sign-In (Google, Microsoft, GitHub)
Use this when your generated app includes --auth.
- Enable provider handlers:
// Single-project:
// Infrastructure/Configuration/IdentityServiceExtensions.cs
// Multi-project:
// MCA.Api/Configuration/IdentityServiceExtensions.cs
// Uncomment providers:
// .AddGoogle(...)
// .AddMicrosoftAccount(...)
// .AddGitHub(...)
- Install GitHub provider package if needed:
dotnet add package AspNet.Security.OAuth.GitHub
- Add secrets via user-secrets/environment variables:
{
"Authentication": {
"Google": { "ClientId": "...", "ClientSecret": "..." },
"Microsoft": { "ClientId": "...", "ClientSecret": "..." },
"GitHub": { "ClientId": "...", "ClientSecret": "..." }
}
}
- Configure provider callback URLs:
- Google:
https://localhost:<port>/signin-google - Microsoft:
https://localhost:<port>/signin-microsoft - GitHub:
https://localhost:<port>/signin-github
- Optional: uncomment external-provider buttons in:
- Single:
Endpoints/AuthEndpoints.cs - Multi:
MCA.Api/Endpoints/AuthEndpoints.cs
Validate Templates Locally
# From repo root — pack then validate
./scripts/pack.sh --package-version 0.1.20-preview
./scripts/validate-templates.sh -McaVersion 0.1.20-preview -Framework net10.0
# PowerShell equivalents
# ./scripts/pack.ps1 -PackageVersion 0.1.20-preview
# ./scripts/validate-templates.ps1 -McaVersion 0.1.20-preview -Framework net10.0
scripts/validate-templates.* wraps templates/scripts/validate-templates.ps1 (implementation lives under templates/scripts/).
Validation behavior:
- Scaffolds and builds multi/single variants (default, recommended, auth, all, SQL Server, Postgres, SQLite).
- Includes Aspire scenarios by default:
- multi
--recommended --aspire --db postgres(builds{Name}.AppHost, assertsscripts/run-apphost.*) - single
--single-project --recommended --aspire --db sqlserver(builds{Name}.AppHost, checks nested-project exclusions)
- multi
- Aspire checks assert stable connection name
appdb,AddServiceDefaults/MapDefaultEndpoints, nodocker-compose.yml, no compose/kind deploy scripts. - Isolates generated apps from the repo
Directory.Build.props(CPM / TreatWarningsAsErrors / NuGet audit). - Uses the local feed for
MinimalCleanArch.*packages andnuget.orgfor third-party packages by default. - Pass
-IncludeNugetOrg:$falseonly if your local feed also contains every external package referenced by the generated templates. - Pass
-SkipAspireto omit Aspire scaffolds (e.g. offline without Aspire packages). - Pass
-RunDockerE2Ewhen you want durable SQL Server and PostgreSQL integration tests to run instead of being skipped. - On success, deletes the run directory under
temp/validate/(pass-KeepOutputto retain). On failure, keeps it for debugging. - Template xUnit tests clean each run’s
temp/MCA_Tests/<id>/unlessMCA_KEEP_TEMPLATE_OUTPUT=1. - Manual cleanup:
./scripts/clean-temp.sh(orpwsh ./scripts/clean-temp.ps1).
Uninstall
dotnet new uninstall MinimalCleanArch.Templates
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.20-preview | 92 | 8/2/2026 |
| 0.1.19 | 145 | 3/18/2026 |
| 0.1.19-preview | 114 | 3/18/2026 |
| 0.1.18 | 119 | 3/13/2026 |
| 0.1.18-preview | 120 | 3/12/2026 |
| 0.1.17 | 124 | 3/12/2026 |
| 0.1.17-preview | 119 | 3/8/2026 |
| 0.1.16-preview | 115 | 3/7/2026 |
| 0.1.15-preview | 122 | 3/3/2026 |
| 0.1.14 | 123 | 3/2/2026 |
| 0.1.14-preview | 116 | 3/1/2026 |
| 0.1.13-preview | 117 | 2/28/2026 |
| 0.1.12-preview | 124 | 2/22/2026 |
| 0.1.11-preview | 133 | 12/27/2025 |
| 0.1.10-preview | 118 | 12/27/2025 |
| 0.1.9-preview | 147 | 12/21/2025 |
| 0.1.8-preview | 255 | 12/15/2025 |
| 0.1.7 | 191 | 12/14/2025 |
| 0.1.7-preview | 440 | 12/11/2025 |
| 0.1.6 | 467 | 12/9/2025 |