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
This issue doesn't reproduce when using this command dotnet new aspire-starter --use-redis-cache -o Aspire1 the cache in the Aspire Dashboard displayed successfully.
REPRO STEPS
Open CMD, create a folder using following commands:
mkdir aspireapp1
cd aspireapp1
aspire new
cd aspireapp1.apphost
aspire add
Select add redis from the choices or can add redis directly. aspire add redis
Run the project. aspire run/dotnet run
Check the cache project in the Aspire Dashboard.
ACTUAL
There is no cache in the Aspire dashboard that indicates redis package has been included.
EXPECTED
The redis package should be included.
The text was updated successfully, but these errors were encountered:
This is expected. What aspire add does is add the hosting integration to the AppHost, but it doesn't update the code to do it, you need to manually go in and add the code:
@maddymontaquila even though this is currently by design I do think it will be confusing to folks so I think in the near term (9.3?) we probably want to automatically add in the code.
The challenge is figuring out what the code should be in the first place. Perhaps the best we can do for 9.2 is point to the README, so a dupe of #8159
INSTALL STEPS
1.Clean machine: Win11 x64 ENU
2.Install SDK 9.0.202
3. Add dotnet9 feed for 9.2.0-preview.1
4. Install the latest Aspire 9.2.0-preview.1 templates
dotnet new install Aspire.ProjectTemplates::9.2.0-preview.1.25176.8 --force
5. Install aspire.cli tool.
dotnet tool install --global aspire.cli --prerelease --source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json
NOTE
dotnet new aspire-starter --use-redis-cache -o Aspire1
the cache in the Aspire Dashboard displayed successfully.REPRO STEPS
Select add redis from the choices or can add redis directly.
aspire add redis
Run the project.
aspire run/dotnet run
Check the cache project in the Aspire Dashboard.
ACTUAL

There is no cache in the Aspire dashboard that indicates redis package has been included.
EXPECTED

The redis package should be included.
The text was updated successfully, but these errors were encountered: