From a21517551376762fcae211dbfa6fb62498c4ad33 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 21 Oct 2025 12:01:50 +0000 Subject: [PATCH 1/2] Initial plan From bba6a770849c8bfdda9e7922c08c9422a5f8c00c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 21 Oct 2025 12:07:00 +0000 Subject: [PATCH 2/2] Update AppHost project section to show new SDK format for Aspire 13.0 Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com> --- docs/fundamentals/app-host-overview.md | 35 +++++++++++++++++++------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/docs/fundamentals/app-host-overview.md b/docs/fundamentals/app-host-overview.md index 660e46470f..3108492b6d 100644 --- a/docs/fundamentals/app-host-overview.md +++ b/docs/fundamentals/app-host-overview.md @@ -46,28 +46,45 @@ When you call - - + Exe - net9.0 + net10.0 - - - - ``` +> [!NOTE] +> The alternative approach of explicitly listing the SDK and package reference still works and isn't a requirement to change existing projects: +> +> ```xml +> +> +> +> +> +> Exe +> net10.0 +> +> +> +> +> +> +> +> +> +> +> ``` + The following code describes an AppHost `Program` with two project references and a Redis cache: ```csharp