Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <weshaggard@users.noreply.github.com>2015-12-03 01:26:16 +0300
committerWes Haggard <weshaggard@users.noreply.github.com>2015-12-03 01:26:16 +0300
commite994bec517fd7aed71d9c0ecb041fba0577e43d1 (patch)
tree742cf8f337b3e346848fba7b18f4bd5f4ccd2053 /Documentation/coding-guidelines
parent52c6c0f899863496bb1f8af4caaa6bced26f87a8 (diff)
Fix anchor links in project-guidelines.md
Diffstat (limited to 'Documentation/coding-guidelines')
-rw-r--r--Documentation/coding-guidelines/project-guidelines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/coding-guidelines/project-guidelines.md b/Documentation/coding-guidelines/project-guidelines.md
index be5b209005..96c4507621 100644
--- a/Documentation/coding-guidelines/project-guidelines.md
+++ b/Documentation/coding-guidelines/project-guidelines.md
@@ -5,7 +5,7 @@ src\<Library Name>\src - Contains the source code for the library.
src\<Library Name>\ref - Contains any refernce assembly projects for the library
src\<Library Name>\tests - Contains the test code for a library
```
-In the src directory for a library there should be only **one** `.csproj` file that contains any information necessary to build the library in various configurartions (see [Configurations](project-configuration-conventions)). The src directory should also contain exactly **one** `.builds` file which contains all the valid configurations that a library should be built for (see [.builds file](project-.builds-file)). In some cases there might be a Facade subdirectory under src with a .csproj (see [Facades Projects](facades-projects)).
+In the src directory for a library there should be only **one** `.csproj` file that contains any information necessary to build the library in various configurartions (see [Configurations](#project-configuration-conventions)). The src directory should also contain exactly **one** `.builds` file which contains all the valid configurations that a library should be built for (see [#.builds file](#project-builds-file)). In some cases there might be a Facade subdirectory under src with a .csproj (see [Facades Projects](#facades-projects)).
##Build Pivots