From 2f358dbfca66f697c7f2d2e7e7d2d98bce364c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=A8=20Audrey=20=E2=9C=A8?= Date: Thu, 21 Sep 2023 14:49:26 -0400 Subject: [PATCH] use dash when running self-hosted dotnet profile (#202) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The documentation for selecting the self-hosting profile incorrectly used an em dash (`—`) where it should have used a normal dash (`-`). This caused the dotnet runtime to select the wrong port when running instructions listed in the contributor docs. This commit replaces the em dash with a normal dash. --- docs/getting-started/server/self-hosted/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/server/self-hosted/index.md b/docs/getting-started/server/self-hosted/index.md index 22e0468d..ffdf4b52 100644 --- a/docs/getting-started/server/self-hosted/index.md +++ b/docs/getting-started/server/self-hosted/index.md @@ -251,7 +251,7 @@ To run self-hosted from the CLI, you will need to: 3. Start the Identity service: ```bash - dotnet run -—launch-profile Identity-SelfHost + dotnet run --launch-profile Identity-SelfHost ``` 4. Test that the Identity service is alive by navigating to @@ -266,7 +266,7 @@ To run self-hosted from the CLI, you will need to: 6. Start the Api Service: ```bash - dotnet run -—launch-profile Api-SelfHost + dotnet run --launch-profile Api-SelfHost ``` 7. Test that the Api service is alive by navigating to