Skip to content

Commit cdfd960

Browse files
author
Cam Soper
committed
More fixes
1 parent 039b59e commit cdfd960

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
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/Components/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 package** 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/Components/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 > Components > 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/3-learn-about-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ In this unit, you'll learn about the integrations that are included in .NET Aspi
66

77
## Use .NET Aspire integrations
88

9-
Each .NET Aspire integration is a NuGet package, and you can add it to your project using the NuGet package manager. In Visual Studio, there is a new **Add > .NET Aspire integration** menu item. This action displays the package manager with a filter applied to display only .NET Aspire integrations:
9+
Each .NET Aspire integration is a NuGet package, and you can add it to your project using the NuGet package manager. In Visual Studio, there is a new **Add > .NET Aspire package** menu item. This action displays the package manager with a filter applied to display only .NET Aspire integrations:
1010

11-
:::image type="content" source="../media/add-integration.png" lightbox="../media/add-integration.png" alt-text="Screenshot showing the NuGet package manager in Visual Studio displaying .NET Aspire integrations.":::
11+
:::image type="content" source="../media/add-component.png" lightbox="../media/add-component.png" alt-text="Screenshot showing the NuGet package manager in Visual Studio displaying .NET Aspire integrations.":::
1212

1313
> [!NOTE]
1414
> You'll see how to use this integration tools in the exercise later in this module.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/Components/Pages/Catalog_ folder, and then select the _Catalog.razor_ page.
146146
1. Locate this line of code:
147147

148148
```csharp

learn-pr/aspnetcore/use-databases-dotnet-aspire-app/includes/store-data-sql-databases.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Or to use the .NET Aspire PostgreSQL Entity Framework Core integration, use this
7070
dotnet add package Aspire.Npgsql.EntityFrameworkCore.PostgreSQL --prerelease
7171
```
7272

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

7575
:::image type="content" source="../media/adding-postgres-nuget-package.png" lightbox="../media/adding-postgres-nuget-package.png" alt-text="Screenshot showing the NuGet package manager in Visual Studio displaying .NET Aspire PostgreSQL integrations.":::
7676

@@ -258,7 +258,7 @@ Or to use the .NET Aspire SqlServer Entity Framework Core integration, use this
258258
dotnet add package Aspire.Microsoft.EntityFrameworkCore.SqlServer --prerelease
259259
```
260260

261-
These NuGet packages can also be added using the **Add > .NET Aspire integration** shortcut in Visual Studio.
261+
These NuGet packages can also be added using the **Add > .NET Aspire package** shortcut in Visual Studio.
262262

263263
The _*.AppHost_ project's _Program.cs_ file code to access the database is similar to the PostgreSQL example:
264264

@@ -366,7 +366,7 @@ To install the .NET Aspire MySQL integration, use a command like this one in you
366366
dotnet add package Aspire.MySqlConnector --prerelease
367367
```
368368

369-
Or use the **Add > .NET Aspire integration** shortcut in Visual Studio to install the integration from the NuGet package manager.
369+
Or use the **Add > .NET Aspire package** shortcut in Visual Studio to install the integration from the NuGet package manager.
370370

371371
The _*.AppHost_ project's _Program.cs_ file code to access the database is similar to the PostgreSQL example:
372372

0 commit comments

Comments
 (0)