Skip to content

Commit 3070b43

Browse files
authored
Merge branch 'master' into Use_concurrent_collections_in_WorkflowLoggingService
2 parents b795ca2 + 435d9fa commit 3070b43

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

daprdocs/content/en/dotnet-sdk-docs/dotnet-development/dotnet-development-dapr-aspire.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,18 @@ dotnet new web MyApp
6868
```
6969

7070
Next we'll configure the AppHost project to add the necessary package to support local Dapr development. Navigate
71-
into the AppHost directory with the following and install the `Aspire.Hosting.Dapr` package from NuGet into the project.
71+
into the AppHost directory with the following and install the `CommunityToolkit.Aspire.Hosting.Dapr` package from NuGet into the project.
7272
We'll also add a reference to our `MyApp` project so we can reference it during the registration process.
7373

74+
{{% alert color="primary" %}}
75+
76+
This package was previously called `Aspire.Hosting.Dapr`, which has been [marked as deprecated](https://www.nuget.org/packages/Aspire.Hosting.Dapr).
77+
78+
{{% /alert %}}
79+
7480
```sh
7581
cd aspiredemo.AppHost
76-
dotnet add package Aspire.Hosting.Dapr
82+
dotnet add package CommunityToolkit.Aspire.Hosting.Dapr
7783
dotnet add reference ../MyApp/
7884
```
7985

0 commit comments

Comments
 (0)