Skip to content

Commit f33ab2b

Browse files
authored
.NET Aspire 9 - GA
- Add links to .NET Aspire SDK - Correct phrasing about additive nature of `Sdk`
1 parent e0a0955 commit f33ab2b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/core/project-sdk/overview.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ Modern .NET projects are associated with a project software development kit (SDK
1414

1515
The following SDKs are available:
1616

17-
| ID | Description | Repo |
18-
|----------------------------|---------------------------------------------------------|----------------------------------------|
19-
| `Microsoft.NET.Sdk` | The .NET SDK | <https://github.com/dotnet/sdk> |
20-
| `Microsoft.NET.Sdk.Web` | The .NET [Web SDK](/aspnet/core/razor-pages/web-sdk) | <https://github.com/dotnet/sdk> |
21-
| `Microsoft.NET.Sdk.Razor` | The .NET [Razor SDK](/aspnet/core/razor-pages/sdk) | <https://github.com/dotnet/aspnetcore> |
17+
| ID | Description | Repo |
18+
|----------------------------|--------------------------------------------------------------------------------------|----------------------------------------|
19+
| `Microsoft.NET.Sdk` | The .NET SDK | <https://github.com/dotnet/sdk> |
20+
| `Microsoft.NET.Sdk.Web` | The .NET [Web SDK](/aspnet/core/razor-pages/web-sdk) | <https://github.com/dotnet/sdk> |
21+
| `Microsoft.NET.Sdk.Razor` | The .NET [Razor SDK](/aspnet/core/razor-pages/sdk) | <https://github.com/dotnet/aspnetcore> |
2222
| `Microsoft.NET.Sdk.BlazorWebAssembly` | The .NET [Blazor WebAssembly SDK](/aspnet/core/blazor#blazor-webassembly) | <https://github.com/dotnet/aspnetcore> |
23-
| `Microsoft.NET.Sdk.Worker` | The .NET [Worker Service](../extensions/workers.md) SDK | |
24-
| `Aspire.AppHost.Sdk` | The .NET Aspire SDK | <https://github.com/dotnet/aspire> |
25-
| `MSTest.Sdk` | The [MSTest SDK](../testing/unit-testing-mstest-sdk.md) | <https://github.com/microsoft/testfx> |
23+
| `Microsoft.NET.Sdk.Worker` | The .NET [Worker Service SDK](../extensions/workers.md) | <https://github.com/dotnet/aspnetcore> |
24+
| `Aspire.AppHost.Sdk` | The .NET [Aspire SDK](/dotnet/aspire/fundamentals/dotnet-aspire-sdk) | <https://github.com/dotnet/aspire> |
25+
| `MSTest.Sdk` | The [MSTest SDK](../testing/unit-testing-mstest-sdk.md) | <https://github.com/microsoft/testfx> |
2626

2727
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.
2828

@@ -36,22 +36,22 @@ For Windows Forms and Windows Presentation Foundation (WPF) projects, you specif
3636

3737
```xml
3838
<Project Sdk="Microsoft.NET.Sdk">
39-
...
39+
<!-- Omitted for brevity... -->
4040
</Project>
4141
```
4242

43-
Starting with .NET Aspire 9, the preceding example could instead use the .NET Aspire SDK.
43+
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`:
4444

4545
```xml
4646
<Project Sdk="Microsoft.NET.Sdk">
4747

48-
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0-rc.1.24511.1" />
48+
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0" />
4949
<!-- Omitted for brevity... -->
5050

5151
</Project>
5252
```
5353

54-
For more information, see [.NET Aspire tooling and setup](/dotnet/aspire/fundamentals/setup-tooling).
54+
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)
5555

5656
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.
5757

0 commit comments

Comments
 (0)