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 22title : .NET project SDK overview
33titleSuffix : " "
44description : Learn about the .NET project SDKs.
5- ms.date : 06/30/2022
5+ ms.date : 10/15/2024
66ms.topic : conceptual
77no-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+
4256To 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
You can’t perform that action at this time.
0 commit comments