Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# ASP.NET Core on .NET
# Documentation

ServiceComposer leverages the Endpoints support to plugin into the request handling pipeline.
ServiceComposer can be added to existing or new ASP.NET Core projects, or it can be hosted in .NET console applications.
The [getting started](getting-started.md) documentation provides an overview of the basic building blocks:

- [Hosting](getting-started.md)
- [Composition requests handlers](getting-started.md#composition-requests-handlers)
- [Composition events handlers](getting-started.md#composition-events-handlers)

## Supported .NET versions

ServiceComposer targets .NET 8.

## Note about thread safety

If resources are shared across more than one handler they must be [thread-safe](thread-safety.md).
> [!NOTE]
> About thread safety
> If resources are shared across more than one handler they must be [thread-safe](thread-safety.md).

## Upgrade guides

Expand Down
9 changes: 9 additions & 0 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Getting started

## Hosting

ServiceComposer leverages the ASP.NET Core Endpoints support to plugin into the request handling pipeline. ServiceComposer can be added to existing or new ASP.NET Core projects, or it can be hosted standalone in .NET console applications.

## Composition requests handlers

## Composition events handlers