Skip to content

Fix typos in Update custom-resources.md #934

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 3 commits into from
May 17, 2024
Merged
Changes from 2 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
6 changes: 3 additions & 3 deletions docs/extensibility/custom-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Press <kbd>Ctrl</kbd>+<kbd>C</kbd> to shutdown the app (you can close the browse
1. Add `Aspire.Hosting` to the class library as a package reference.

```dotnetcli
dotnet add ./MailDev.Hosting\MailDev.Hosting.csproj package Aspire.Hosting --version 8.0.0
dotnet add ./MailDev.Hosting/MailDev.Hosting.csproj package Aspire.Hosting --version 8.0.0-preview.7.24251.11
```

1. Add class library reference to the _MailDevResource.AppHost_ project.
Expand Down Expand Up @@ -238,7 +238,7 @@ In order to test the end-to-end scenario, you need a .NET project which we can i
1. Add a referece to the _MailDevResource.AppHost_ project.

```dotnetcli
dotnet add ./MailDevResource.AppHost/MailDevResource.AppHost.csproj reference ./MailDevResource.NewsletterService\MailDevResource.NewsletterService.csproj
dotnet add ./MailDevResource.AppHost/MailDevResource.AppHost.csproj reference ./MailDevResource.NewsletterService/MailDevResource.NewsletterService.csproj
```

1. Add the new project to the solution file.
Expand Down Expand Up @@ -467,7 +467,7 @@ public static IResourceBuilder<MailDevResource> AddMailDev(
}
```

Careful consideration should be given as to whether the resource should be present in the manifest, or whether it should be suppressed. If the resource is being added to the manifest it should be configured in such a way that it 's safe and secure to use.
Careful consideration should be given as to whether the resource should be present in the manifest, or whether it should be suppressed. If the resource is being added to the manifest it should be configured in such a way that it's safe and secure to use.

## Summary

Expand Down
Loading