File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
daprdocs/content/en/dotnet-sdk-docs/dotnet-development Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -68,12 +68,18 @@ dotnet new web MyApp
6868```
6969
7070Next 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.
7272We'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
7581cd aspiredemo.AppHost
76- dotnet add package Aspire.Hosting.Dapr
82+ dotnet add package CommunityToolkit. Aspire.Hosting.Dapr
7783dotnet add reference ../MyApp/
7884```
7985
You can’t perform that action at this time.
0 commit comments