diff --git a/docs/core/project-sdk/overview.md b/docs/core/project-sdk/overview.md index 42bb6272449e1..cc10a266ff7b1 100644 --- a/docs/core/project-sdk/overview.md +++ b/docs/core/project-sdk/overview.md @@ -14,15 +14,15 @@ Modern .NET projects are associated with a project software development kit (SDK The following SDKs are available: -| ID | Description | Repo | -|----------------------------|---------------------------------------------------------|----------------------------------------| -| `Microsoft.NET.Sdk` | The .NET SDK | | -| `Microsoft.NET.Sdk.Web` | The .NET [Web SDK](/aspnet/core/razor-pages/web-sdk) | | -| `Microsoft.NET.Sdk.Razor` | The .NET [Razor SDK](/aspnet/core/razor-pages/sdk) | | +| ID | Description | Repo | +|----------------------------|--------------------------------------------------------------------------------------|----------------------------------------| +| `Microsoft.NET.Sdk` | The .NET SDK | | +| `Microsoft.NET.Sdk.Web` | The .NET [Web SDK](/aspnet/core/razor-pages/web-sdk) | | +| `Microsoft.NET.Sdk.Razor` | The .NET [Razor SDK](/aspnet/core/razor-pages/sdk) | | | `Microsoft.NET.Sdk.BlazorWebAssembly` | The .NET [Blazor WebAssembly SDK](/aspnet/core/blazor#blazor-webassembly) | | -| `Microsoft.NET.Sdk.Worker` | The .NET [Worker Service](../extensions/workers.md) SDK | | -| `Aspire.AppHost.Sdk` | The .NET Aspire SDK | | -| `MSTest.Sdk` | The [MSTest SDK](../testing/unit-testing-mstest-sdk.md) | | +| `Microsoft.NET.Sdk.Worker` | The .NET [Worker Service SDK](../extensions/workers.md) | | +| `Aspire.AppHost.Sdk` | The .NET [Aspire SDK](/dotnet/aspire/fundamentals/dotnet-aspire-sdk) | | +| `MSTest.Sdk` | The [MSTest SDK](../testing/unit-testing-mstest-sdk.md) | | The .NET SDK is the base SDK for .NET. The other SDKs reference the .NET SDK, and projects that are associated with the other SDKs have all the .NET SDK properties available to them. The Web SDK, for example, depends on both the .NET SDK and the Razor SDK. @@ -36,22 +36,22 @@ For Windows Forms and Windows Presentation Foundation (WPF) projects, you specif ```xml - ... + ``` -Starting with .NET Aspire 9, the preceding example could instead use the .NET Aspire SDK. +The `Project/Sdk` attribute and `Sdk` element enable additive SDKs. Consider the following example, where the .NET Aspire SDK (`Aspire.AppHost.Sdk`) is added to the project atop the `Microsoft.NET.Sdk`: ```xml - + ``` -For more information, see [.NET Aspire tooling and setup](/dotnet/aspire/fundamentals/setup-tooling). +In the preceding project file, both SDKs are used to resolve dependencies in an additive nature. For more information, see [.NET Aspire SDK](/dotnet/aspire/fundamentals/dotnet-aspire-sdk) 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.