File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 2
2
title : .NET project SDK overview
3
3
titleSuffix : " "
4
4
description : Learn about the .NET project SDKs.
5
- ms.date : 06/30/2022
5
+ ms.date : 10/15/2024
6
6
ms.topic : conceptual
7
7
no-loc : ["EmbeddedResource", "Compile", "None", "Blazor"]
8
8
---
@@ -16,6 +16,7 @@ The following SDKs are available:
16
16
17
17
| ID | Description | Repo |
18
18
| ----------------------------| ---------------------------------------------------------| ----------------------------------------|
19
+ | ` Aspire.AppHost.Sdk ` | The .NET [ Aspire SDK] ( /dotnet/aspire/sdk ) | < https://github.com/dotnet/aspire > |
19
20
| ` Microsoft.NET.Sdk ` | The .NET SDK | < https://github.com/dotnet/sdk > |
20
21
| ` Microsoft.NET.Sdk.Web ` | The .NET [ Web SDK] ( /aspnet/core/razor-pages/web-sdk ) | < https://github.com/dotnet/sdk > |
21
22
| ` 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
39
40
</Project >
40
41
```
41
42
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
+
42
56
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.
43
57
44
58
``` xml
You can’t perform that action at this time.
0 commit comments