Skip to content

Commit c2cbc7b

Browse files
author
Cam Soper
authored
Apply suggestions from code review
1 parent c1b2628 commit c2cbc7b

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

learn-pr/aspnetcore/create-aspire-applications/includes/exercise-create-new-aspire-application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ Now use Visual Studio to add code to use the Redis integration.
333333
- Configures ASP.NET Core output caching to use a Redis instance with the specified connection name.
334334
- Automatically enables corresponding health checks, logging, and telemetry.
335335
336-
1. Replace the contents of **AspireTestApp.Web/integrations/Pages/Home.razor** with the following code:
336+
1. Replace the contents of **AspireTestApp.Web/Integrations/Pages/Home.razor** with the following code:
337337
338338
```razor
339339
@page "/"

learn-pr/aspnetcore/improve-performance-cache-aspire/includes/3-redis-distributed-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In your solution's app host project, start by installing the distributed caching
2020
dotnet add package Aspire.Hosting.Redis --prerelease
2121
```
2222

23-
Alternatively, you can use the **Add > .NET Aspire integration** shortcut in Visual Studio to install the integration from the NuGet package manager:
23+
Alternatively, you can use the **Add > .NET Aspire Integration** shortcut in Visual Studio to install the integration from the NuGet package manager:
2424

2525
:::image type="content" source="../media/app-host-redis-install.png" lightbox="../media/app-host-redis-install.png" alt-text="Screenshot showing the NuGet package manager in Visual Studio displaying .NET Aspire Redis caching hosting integration.":::
2626

learn-pr/aspnetcore/improve-performance-cache-aspire/includes/6-exercise-cache-data-redis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Let's use `git` to obtain a sample app built with .NET Aspire. The app doesn't y
117117
118118
1. Start Visual Studio and then select **Open a project or solution**.
119119
1. Browse to the folder where you cloned the eShop, open the _start_ folder and select the _eShop.rediscache.sln_ file, and then select **Open**.
120-
1. In **Solution Explorer**, browse to _WebApp/integrations/Pages_ and then double-click _Catalog.razor_.
120+
1. In **Solution Explorer**, browse to _WebApp/Integrations/Pages_ and then double-click _Catalog.razor_.
121121
1. Locate the following line of code:
122122
123123
```razor
@@ -250,7 +250,7 @@ Now, let's use the Redis cache in the WebApp project to cache the homepage outpu
250250
app.UseOutputCache();
251251
```
252252
253-
1. In **Solution Explorer**, expand **WebApp > integrations > Pages** and then double-click _Catalog.razor_.
253+
1. In **Solution Explorer**, expand **WebApp > Integrations > Pages** and then double-click _Catalog.razor_.
254254
1. Locate the following line of code:
255255
256256
```razor

learn-pr/aspnetcore/introduction-dotnet-aspire/includes/2-what.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Microservices and their loosely coupled nature increase the flexibility of your
6565

6666
When you create a .NET Aspire solution, you'll see a new project in the solution called **\<SolutionName\>.AppHost**. This project implements orchestration for your app and you should ensure it's the start-up project for the solution.
6767

68-
### integrations
68+
### Integrations
6969

7070
Microservices commonly have functional requirements for complex backing services that underpin their features. For example:
7171

learn-pr/aspnetcore/introduction-dotnet-aspire/includes/3-learn-about-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ In a cloud-native application, data security is often a business-critical topic.
9595

9696
## Learn more
9797

98-
- [.NET Aspire integrations](/dotnet/aspire/get-started/aspire-overview#net-aspire-integrations)
98+
- [.NET Aspire Integrations](/dotnet/aspire/get-started/aspire-overview#net-aspire-integrations)

learn-pr/aspnetcore/introduction-dotnet-aspire/includes/5-exercise-use-eshop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Let's use the eShop reference application to demonstrate the .NET Aspire stack.
133133
1. Expand the **AppHost** project, and then select the _eShop.AppHost/Program.cs_ file.
134134
1. In the _Program.cs_ file, notice that:
135135

136-
- integrations of the application are added to a `DistributedApplicationBuilder` object named `builder`.
136+
- Integrations of the application are added to a `DistributedApplicationBuilder` object named `builder`.
137137
- Backing services, such as a Redis cache, a RabbitMQ messaging service, and a PostgreSQL database, are added to the builder. Each will be provisioned in a Docker container.
138138
- Each microservice is added to the builder by using the `builder.AddProject()` method.
139139
- References to the backing services are injected into each microservice by using the `.WithReference()` method.
@@ -142,7 +142,7 @@ Let's use the eShop reference application to demonstrate the .NET Aspire stack.
142142

143143
We'll make a simple change in the source code to test when we run the app:
144144

145-
1. In **Solution Explorer**, expand the _src/WebApp/integrations/Pages/Catalog_ folder, and then select the _Catalog.razor_ page.
145+
1. In **Solution Explorer**, expand the _src/WebApp/Integrations/Pages/Catalog_ folder, and then select the _Catalog.razor_ page.
146146
1. Locate this line of code:
147147

148148
```csharp

learn-pr/aspnetcore/introduction-dotnet-aspire/includes/7-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Now that you've completed this module, you can:
1111
- [.NET Aspire documentation](/dotnet/aspire/)
1212
- [.NET Aspire code samples](/samples/browse/?products=dotnet-aspire)
1313
- [.NET Aspire source code](https://github.com/dotnet/aspire/tree/main)
14-
- [.NET Aspire integrations](https://github.com/dotnet/aspire/tree/main/src/integrations)
14+
- [.NET Aspire integrations](https://github.com/dotnet/aspire/tree/main/src/Components)

0 commit comments

Comments
 (0)