You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`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>|
22
22
|`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>|
26
26
27
27
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.
28
28
@@ -38,22 +38,22 @@ You can also author your own SDK that can be distributed via NuGet.
38
38
39
39
```xml
40
40
<ProjectSdk="Microsoft.NET.Sdk">
41
-
...
41
+
<!-- Omitted for brevity...-->
42
42
</Project>
43
43
```
44
44
45
-
Starting with .NET Aspire 9, the preceding example could instead use the .NET Aspire SDK.
45
+
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`:
For more information, see [.NET Aspire tooling and setup](/dotnet/aspire/fundamentals/setup-tooling).
56
+
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)
57
57
58
58
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.
0 commit comments