From 0570583829c7656778c2b0e8f20570627d6ecde1 Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Fri, 16 Jun 2023 16:00:16 +0300 Subject: [PATCH] Fix broken link in editing-and-debugging.md (#87681) --- docs/workflow/editing-and-debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/workflow/editing-and-debugging.md b/docs/workflow/editing-and-debugging.md index 16eb946..c219ed4 100644 --- a/docs/workflow/editing-and-debugging.md +++ b/docs/workflow/editing-and-debugging.md @@ -27,7 +27,7 @@ The repository has a number of Visual Studio Solutions files (`*.sln`) that are * `crossgen` - This is the host program that runs the JIT compiler and produces .NET Native images (`*.ni.dll`) for C# code. * This project can be automatically generated and opened in Visual Studio by running `./build.cmd -vs CoreCLR.sln -a -c ` from the root of the repository. - * `artifacts\obj\win-.\corehost\ide\corehost.sln` - this solution contains the native (C++) projects for the [host components](../design/features/host-components) + * `artifacts\obj\win-.\corehost\ide\corehost.sln` - this solution contains the native (C++) projects for the [host components](../design/features/host-components.md) * This project can be automatically generated and opened in Visual Studio by running `./build.cmd -vs corehost.sln -a -c ` from the root of the repository. Thus opening one of these solution files (double clicking on them in Explorer) is typically all you need -- 2.7.4