Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/ServiceComposer/ServiceComposer.AspNetCore/llms.txt

Use this file to discover all available pages before exploring further.

Version 5.0.0 is a focused release that updates the supported target framework. There are no API-level breaking changes; the only required action is to update your project’s target framework to .NET 10.
Starting with v5.0.0, ServiceComposer.AspNetCore targets only .NET 10. Projects targeting net6.0, net7.0, net8.0, or net9.0 must upgrade their target framework before consuming this version.
1

Update your project target framework to .NET 10

In your .csproj file, change the TargetFramework (or TargetFrameworks) element to net10.0:
<!-- Before (example) -->
<!-- <TargetFramework>net8.0</TargetFramework> -->

<!-- After -->
<TargetFramework>net10.0</TargetFramework>
If your solution contains multiple projects, ensure all projects that reference ServiceComposer.AspNetCore (directly or transitively) also target net10.0, or use a multi-targeting configuration that includes net10.0.
2

Update the ServiceComposer.AspNetCore NuGet package

Update your package reference to v5.0.0 or later:
<PackageReference Include="ServiceComposer.AspNetCore" Version="5.0.0" />
Run a package restore and verify there are no remaining compatibility warnings.
3

Verify .NET 10 compatibility across your dependency tree

Review all other NuGet packages in your project to confirm they support .NET 10. The .NET 10 upgrade may surface compatibility issues in third-party libraries that are unrelated to ServiceComposer itself.

Build docs developers (and LLMs) love