From 417fbbd100a9b990295c5b419ca9ebad58a1354c Mon Sep 17 00:00:00 2001 From: Martin Fletcher Date: Fri, 24 May 2024 00:04:33 +0100 Subject: [PATCH 1/2] Update ef-core-migrations.md - Fixed typo in project names Fixed typo in project name for 'SupportTicketApi.Api' under 'Obtain the starter app' section --- docs/database/ef-core-migrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/database/ef-core-migrations.md b/docs/database/ef-core-migrations.md index 871ee579e2..42116f3806 100644 --- a/docs/database/ef-core-migrations.md +++ b/docs/database/ef-core-migrations.md @@ -23,7 +23,7 @@ git clone https://github.com/MicrosoftDocs/mslearn-aspire-starter The sample app is in the *SupportTicketApi* folder. Open the solution in Visual Studio or VS Code and take a moment to review the sample app and make sure it runs before proceeding. The sample app is a rudimentary support ticket API, and it contains the following projects: -- **SupporTicketApi.Api**: The ASP.NET Core project that hosts the API. +- **SupportTicketApi.Api**: The ASP.NET Core project that hosts the API. - **SupportTicketApi.Data**: Contains the EF Core contexts and models. - **SupportTicketApi.AppHost**: Contains the .NET Aspire app host and configuration. - **SupportTicketApi.ServiceDefaults**: Contains the default service configurations. From 17d3f183bf1953525de9f538c2073dceef7aa999 Mon Sep 17 00:00:00 2001 From: Martin Fletcher Date: Fri, 24 May 2024 00:19:47 +0100 Subject: [PATCH 2/2] Update messaging-components.md - Corrected project type description Changed 'Razor Pages' to 'Worker Service' under 'Add the .NET Aspire component to the Worker Service' section where referencing 'Program.cs' file in the 'AspireMessaging.WorkerService' project. --- docs/messaging/messaging-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/messaging/messaging-components.md b/docs/messaging/messaging-components.md index ee048e9f18..f73c04f703 100644 --- a/docs/messaging/messaging-components.md +++ b/docs/messaging/messaging-components.md @@ -231,7 +231,7 @@ Add the [.NET Aspire Azure Service Bus](azure-service-bus-component.md) componen dotnet add package Aspire.Azure.Messaging.ServiceBus ``` -In the _:::no-loc text="Program.cs":::_ file of the `AspireMessaging.WorkerService` Razor Pages project, add a call to the `AddAzureServiceBus` extension methods: +In the _:::no-loc text="Program.cs":::_ file of the `AspireMessaging.WorkerService` Worker Service project, add a call to the `AddAzureServiceBus` extension methods: ```csharp builder.AddAzureServiceBusClient("serviceBusConnection");