Skip to content

Commit ad05aaf

Browse files
authored
Add the .NET Aspire SDK (#43048)
* Add the .NET Aspire SDK Add the .NET Aspire SDK * Apply suggestions from code review
1 parent bb3fecf commit ad05aaf

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/core/project-sdk/overview.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: .NET project SDK overview
33
titleSuffix: ""
44
description: Learn about the .NET project SDKs.
5-
ms.date: 06/30/2022
5+
ms.date: 10/15/2024
66
ms.topic: conceptual
77
no-loc: ["EmbeddedResource", "Compile", "None", "Blazor"]
88
---
@@ -16,6 +16,7 @@ The following SDKs are available:
1616

1717
| ID | Description | Repo |
1818
|----------------------------|---------------------------------------------------------|----------------------------------------|
19+
| `Aspire.AppHost.Sdk` | The .NET [Aspire SDK](/dotnet/aspire/sdk) | <https://github.com/dotnet/aspire> |
1920
| `Microsoft.NET.Sdk` | The .NET SDK | <https://github.com/dotnet/sdk> |
2021
| `Microsoft.NET.Sdk.Web` | The .NET [Web SDK](/aspnet/core/razor-pages/web-sdk) | <https://github.com/dotnet/sdk> |
2122
| `Microsoft.NET.Sdk.Razor` | The .NET [Razor SDK](/aspnet/core/razor-pages/sdk) | <https://github.com/dotnet/aspnetcore> |
@@ -39,6 +40,19 @@ For Windows Forms and Windows Presentation Foundation (WPF) projects, you specif
3940
</Project>
4041
```
4142

43+
Starting with .NET Aspire 9, the preceding example could instead use the .NET Aspire SDK.
44+
45+
```xml
46+
<Project Sdk="Microsoft.NET.Sdk">
47+
48+
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0-rc.1.24511.1" />
49+
<!-- Omitted for brevity... -->
50+
51+
</Project>
52+
```
53+
54+
For more information, see [.NET Aspire tooling and setup](/dotnet/aspire/fundamentals/setup-tooling) or the .
55+
4256
To specify an SDK that comes from NuGet, include the version at the end of the name, or specify the name and version in the *global.json* file.
4357

4458
```xml

0 commit comments

Comments
 (0)