Skip to content

Fixes/Updates to documentation #970

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

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/database/ef-core-migrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/messaging/messaging-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
Loading