From 1da672b76f29128e29f9b175110666286bf68b36 Mon Sep 17 00:00:00 2001 From: David Ebbo Date: Tue, 16 Jul 2024 16:02:00 +0200 Subject: [PATCH 1/2] Fix missing word + couple typos --- docs/extensibility/custom-resources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/extensibility/custom-resources.md b/docs/extensibility/custom-resources.md index 42af28c4a3..e9121a2a64 100644 --- a/docs/extensibility/custom-resources.md +++ b/docs/extensibility/custom-resources.md @@ -57,7 +57,7 @@ cd MailDevResource dir ``` -Once the project is created you should a listing containing the following: +Once the project is created you should get a listing containing the following: - `MailDevResource.AppHost`: The [app host](../fundamentals/app-host-overview.md) used to test out the custom resource. - `MailDevResource.ServiceDefaults`: The [service defaults](../fundamentals/service-defaults.md) project for use in service-related projects. @@ -481,4 +481,4 @@ Careful consideration should be given as to whether the resource should be prese ## Summary -In the custom resource tutorial, you learned how to create a custom .NET Aspire resource which uses an existing containerized application (MailDev). You then used that to improve the local development experience by making it easy to test e-mail capabilities that might be used within an apps. These learnings can be applied to building out other custom resources that can be used in .NET Aspire-based applications. This specific example, didn't include any custom components, but it's possible to build out custom components to make it easier for developers to use the resource. In this scenario you were able to rely on the existing `SmtpClient` class in the .NET platform to send e-mails. +In the custom resource tutorial, you learned how to create a custom .NET Aspire resource which uses an existing containerized application (MailDev). You then used that to improve the local development experience by making it easy to test e-mail capabilities that might be used within an app. These learnings can be applied to building out other custom resources that can be used in .NET Aspire-based applications. This specific example didn't include any custom components, but it's possible to build out custom components to make it easier for developers to use the resource. In this scenario you were able to rely on the existing `SmtpClient` class in the .NET platform to send e-mails. From 53cee653f6edd06c77f06f3e31262afd1c5fe542 Mon Sep 17 00:00:00 2001 From: David Pine Date: Tue, 16 Jul 2024 09:45:56 -0500 Subject: [PATCH 2/2] Apply suggestions from code review --- docs/extensibility/custom-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensibility/custom-resources.md b/docs/extensibility/custom-resources.md index e9121a2a64..60d67e694e 100644 --- a/docs/extensibility/custom-resources.md +++ b/docs/extensibility/custom-resources.md @@ -57,7 +57,7 @@ cd MailDevResource dir ``` -Once the project is created you should get a listing containing the following: +Once the project is created you should see a listing containing the following: - `MailDevResource.AppHost`: The [app host](../fundamentals/app-host-overview.md) used to test out the custom resource. - `MailDevResource.ServiceDefaults`: The [service defaults](../fundamentals/service-defaults.md) project for use in service-related projects.