Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WebToolsE2E][Aspire] When using the 'aspire add redis' command and run the project, there was no cache project in the Aspire Dashboard. #8337

Open
Coleen17 opened this issue Mar 27, 2025 · 2 comments
Labels
Milestone

Comments

@Coleen17
Copy link

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

  1. 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

  1. Open CMD, create a folder using following commands:
mkdir aspireapp1
cd aspireapp1
aspire new
cd aspireapp1.apphost
aspire add
  1. Select add redis from the choices or can add redis directly.
    aspire add redis

  2. Run the project.
    aspire run/dotnet run

  3. Check the cache project in the Aspire Dashboard.

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

EXPECTED
The redis package should be included.
Image

@github-actions github-actions bot added the needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners label Mar 27, 2025
@mitchdenny
Copy link
Member

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:

builder.AddRedis("cache");

@mitchdenny
Copy link
Member

mitchdenny commented Mar 27, 2025

@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

@mitchdenny mitchdenny added this to the Backlog milestone Mar 27, 2025
@balachir balachir removed the needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners label Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants