You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use consistent formatting for CoreCLR repo link (#4920)
* Use consistent formatting for CoreCLR repo link
* Consistently format links to GitHub repositories
The links had different formats. This makes them consistently follow the format of `[org-name/repo-name](link-to-repo)`
Copy file name to clipboardExpand all lines: docs/core/build/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,15 @@ This article gives guidance to developers who want to build and distribute their
20
20
21
21
## Build the CLR from source
22
22
23
-
The source code for the .NET CoreCLR can be found in [the `dotnet/coreclr` repository on GitHub](https://github.com/dotnet/coreclr/).
23
+
The source code for the .NET CoreCLR can be found in the [dotnet/coreclr](https://github.com/dotnet/coreclr/) repository on GitHub.
24
24
25
25
The build currently depends on the following prerequisites:
26
26
*[Git](https://git-scm.com/)
27
27
*[CMake](https://cmake.org/)
28
28
*[Python](https://www.python.org/)
29
29
* a C++ compiler.
30
30
31
-
After you've installed these prerequisites are installed, you can build the CLR by invoking the build script (`build.cmd` on Windows, or `build.sh` on Linux and macOS) at the base of [the CoreCLR repository](https://github.com/dotnet/coreclr/).
31
+
After you've installed these prerequisites are installed, you can build the CLR by invoking the build script (`build.cmd` on Windows, or `build.sh` on Linux and macOS) at the base of the [dotnet/coreclr](https://github.com/dotnet/coreclr/) repository.
32
32
33
33
Installing the components differ depending on the operating system (OS). See the build instructions for your specific OS:
34
34
@@ -78,12 +78,12 @@ There are two basic techniques for using your new runtime:
78
78
2.**Use corerun.exe to run an application using unpackaged DLLs**.
79
79
This repository also defines a simple host called corerun.exe that does NOT take any dependency on NuGet.
80
80
You need to tell the host where to get the required DLLs you actually use, and you have to manually gather them together.
81
-
This technique is used by all the tests in [the CoreCLR repo](https://github.com/dotnet/coreclr), and is useful for quick local 'edit-compile-debug' loop such as preliminary unit testing.
81
+
This technique is used by all the tests in the [dotnet/coreclr](https://github.com/dotnet/coreclr) repo, and is useful for quick local 'edit-compile-debug' loop such as preliminary unit testing.
82
82
See [Executing .NET Core Apps with CoreRun.exe](https://github.com/dotnet/coreclr/blob/master/Documentation/workflow/UsingCoreRun.md) for details on using this technique.
83
83
84
84
## Build the CLI from source
85
85
86
-
The source code for the .NET Core CLI can be found in [the `dotnet/cli` repository on GitHub](https://github.com/dotnet/cli/).
86
+
The source code for the .NET Core CLI can be found in the [dotnet/cli](https://github.com/dotnet/cli/) repository on GitHub.
87
87
88
88
In order to build the .NET Core CLI, you need the following installed on your machine.
0 commit comments