From a4bce98062a3479e980114fe17560d4676d582b9 Mon Sep 17 00:00:00 2001 From: Samson Amaugo Date: Wed, 21 Aug 2024 14:02:56 +0100 Subject: [PATCH] Update custom-component.md (#1530) needed the dot to properly access the `sln` file --- docs/extensibility/custom-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensibility/custom-component.md b/docs/extensibility/custom-component.md index d03c75ecf8..b66ea0ef2d 100644 --- a/docs/extensibility/custom-component.md +++ b/docs/extensibility/custom-component.md @@ -29,7 +29,7 @@ If you're following along, you should have a Newsletter app from the steps in th 1. Add the project to the solution. ```dotnetcli - dotnet sln /MailDevResource.sln add MailKit.Client/MailKit.Client.csproj + dotnet sln ./MailDevResource.sln add MailKit.Client/MailKit.Client.csproj ``` The next step is to add all the NuGet packages that the component relies on. Rather than having you add each package one-by-one from the .NET CLI, it's likely easier to copy and paste the following XML into the _MailKit.Client.csproj_ file.