From 28523c58b27be4921e628fd5be4460f50b26ca4a Mon Sep 17 00:00:00 2001 From: hello Date: Tue, 18 Mar 2025 22:45:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E4=BA=8E=20Aspire=20=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=AE=BF=E4=B8=BB=E7=9A=84=E7=BC=96=E6=8E=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/helloshop/aspire-host-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notes/helloshop/aspire-host-overview.md b/notes/helloshop/aspire-host-overview.md index 2896fe4..b862b8d 100644 --- a/notes/helloshop/aspire-host-overview.md +++ b/notes/helloshop/aspire-host-overview.md @@ -82,7 +82,7 @@ var connection = builder.AddConnectionString("myconnection"); builder.AddProject("api").WithReference(connection); ``` -## 连接字符串和终结点引用 +## 终结点引用 ```csharp var builder = DistributedApplication.CreateBuilder(args); @@ -98,7 +98,7 @@ var apiservice = builder.AddProject("apiservice") ## 在 Redis 组件上启用管理扩展 ```csharp -var redis = builder.AddRedis("redis").WithManagement(); +var redis = builder.AddRedis("redis").WithRedisInsight(); var redis = builder.AddRedis("redis").WithRedisCommander(); ```